/*
Theme Name: Phoebe Ngo Portfolio
Theme URI: https://withphoebe.me
Author: Phoebe Ngo
Author URI: https://withphoebe.me
Description: A premium UX & Product Designer portfolio theme built for Phoebe Ngo. Features dark mode, glassmorphism, native ACF integration, and typography-focused design.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: phoebe-portfolio
*/

/* Password Protection Form Styles */
.post-password-form label {
  display: block;
  margin-bottom: 24px;
}
.post-password-form input[type="password"] {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 12px 24px;
  color: white;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 16px;
  display: block;
  text-align: center;
  font-family: inherit;
  transition: all 0.3s;
}
.post-password-form input[type="password"]:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.1);
}
.post-password-form input[type="submit"] {
  background: white;
  color: black;
  border: none;
  padding: 12px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
}
.post-password-form input[type="submit"]:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}

