/* ==========================================================================
   1. Base & Layout
   ========================================================================== */
:root {
  --color-background: #12121c;
  --color-surface: #1c1c24;
  --color-primary: #4a69ff;
  --color-primary-hover: #3a54cc;
  --color-border: #33333d;
  --color-text-primary: #ffffff;
  --color-text-secondary: #8e8e9a;
  --color-text-link: #c0c0cf;
  --font-family-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --border-radius: 12px;
}

body {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  font-family: var(--font-family-main);
  margin: 0;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

/* ==========================================================================
   2. Form Panel (#1)
   ========================================================================== */
.login-form-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: #00091785;
  font-family: Outfit;
}
.form-actions-bottom{display: flex;justify-content: center;flex-direction: column;}
.form-wrapper {
  width: 100%;
  max-width: 600px;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}
.form-header .logo img {
  height: 32px;
  margin-bottom: 24px;
}
.form-title {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #ffffff;
}
.form-subtitle {
  color: #ffc750;
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #344054;
}
.mb-3 label{
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #344054;
}
.form-control {
  padding: 12px 16px;
  background-color: #535d7e2e;
  border: 1px solid #6d6d6d4f !important;
  border-radius: 20px;
  color: var(--color-text-primary);
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.login-container{transition: all 0.3s ease;
    animation: slideInFromBottom 0.5s ease-out;}
    .shadow-lg{box-shadow: 0 10px 30px rgb(0 0 0 / 0%) !important;}
.position-relative {display: flex;Flex-direction: column;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #344054;}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
}
.two-logins{    width: 100%;}
.login-form-container{background:none;}
.password-wrapper {
  position: relative;
}
.toggle-password {transform: translateY(50%);LEFT: 93%;top: auto;right: auto;}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
}
.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-link);
}
#remember {
  accent-color: var(--color-primary);
}
.forgot-password-link {
  color: #ffc750;
  text-decoration: none;
}
.forgot-password-link:hover {
  color: var(--color-primary);
}

.form-actions .btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s;
  background-color: #0045ff;
}
.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--color-primary-hover);
}

.social-logins {
  display: flex;
  flex-direction: column;
  margin: 24px 0;
}
.btn-primaryuser{border-radius: var(--radius-md, 16px);
border: 1px solid #0045FF!important;
background: #0045FF !important;
color: #fff;

/* Shadows/shadow-xs */
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF);

/* Text md/Semibold */
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 24px; /* 150% */}
.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: #fff;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: background-color 0.2s, border-color 0.2s;
  margin-bottom: 10px;
}
.btn-social:hover {
  background-color: var(--color-surface);
  border-color: var(--color-text-link);
}
.btn-social i {
  font-size: 20px;
}

.captcha-container {
  display: flex;
  justify-content: center;
  margin: 24px 0;
  flex-direction: column;
  align-items: center;
}
.error-message {
  color: #ff4d4d;
  font-size: 12px;
  margin-top: 8px;
}
.outline-secondary{    
    padding: 10px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    font-family: 'outfit', sans-serif;
    background-color: #afafaf;
   }
   .outline-secondary:hover {
    background-color: #8e8e9a;
   }
.form-footer {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 32px 0;
}
.form-footer a {
  color: #0045ff;
  font-weight: 600;
  text-decoration: none;
      margin-bottom: 32px;
}

.honeypot {
  display: none;
}

/* ==========================================================================
   3. Showcase Panel (#2)
   ========================================================================== */
.login-showcase-panel {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://i.ibb.co/pjpB9tvp/loginbg.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 60px;
  position: relative; /* For pseudo-elements if needed */
}

.testimonial-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #28282826;
  backdrop-filter: blur(4.9px);
  color: white;
  padding: 2rem;
  border-radius: 48px;
  font-family: "Arial", sans-serif;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  font-family: Outfit;
}
.testimonial-content {
  flex: 2;
}

.stars {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.author {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.8;
}

.dots {
  margin-top: 1rem;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #2a84ff;
}
.form-checkcustom{display: flex;justify-content: center;gap: 8px;}
.testimonial-image img {
  flex: 1;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 15px;
  margin-left: 2rem;
}
.author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logins{display: flex;align-items: center;justify-content: center;gap: 20px;}
/* ==========================================================================
   4. Responsive (Mobile)
   ========================================================================== */
@media (max-width: 991px) {
  .auth-container {
    grid-template-columns: 1fr; /* Stack panels vertically */
  }
  .login-showcase-panel {
    display: none; /* Hide showcase on mobile */
  }
  .login-form-panel {
    align-items: flex-start; /* Align form to top on mobile */
    padding: 40px 20px;
  }
}
@media (max-width: 786px) {
  .form-header img {
    padding-bottom: 5px !important;
  }
.toggle-password{transform: translateY(59%);}
}
@media (max-width: 450px) {   
.login-form-panel{padding: 10px 20px;}
.toggle-password {LEFT: 87%; transform: translateY(89%);}
.btn-social{font-size: 11px;        GAP: 5px; padding: 9px;}}
.social-login .btn-facebook,.social-login .btn-google{border-radius: var(--radius-md, 16px);border: 1px solid rgba(245, 245, 245, 0.10);background: rgba(255, 255, 255, 0.00);box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);}
.social-login .btn{gap: 9px;}

.form-check-input {width: 14px!important; height: 14px!important;}
.form-control{margin-bottom: 0!important;}
.btn-change-email{margin-bottom: 1rem;}
/* ==========================================================================
   Social Login Improvements
   ========================================================================== */

.social-logins-section {
    margin-bottom: 32px;
}

.social-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .social-buttons-grid {
        grid-template-columns: 1fr;
    }
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Specific social button colors */
.btn-google:hover {
    border-color: #DB4437;
    background: rgba(219, 68, 55, 0.1);
}

.btn-facebook:hover {
    border-color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}

.btn-discord:hover {
    border-color: #5865F2;
    background: rgba(88, 101, 242, 0.1);
}

.btn-twitch:hover {
    border-color: #9146FF;
    background: rgba(145, 70, 255, 0.1);
}

.btn-social i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.btn-social img {
    width: 20px;
    height: 20px;
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 24px 0;
    color: var(--color-text-secondary);
    font-size: 14px;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.divider span {
    background: var(--color-background);
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

/* Form improvements */
.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #fff 0%, #ffc750 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    color: var(--color-text-secondary);
    font-size: 16px;
    margin: 0;
}

/* Enhanced form controls */
.form-control {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    color: var(--color-text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-control:focus {
    outline: none;
    border-color: #0045ff !important;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 69, 255, 0.1);
}

/* Password toggle improvement */
.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    font-size: 16px;
}

.toggle-password:hover {
    color: var(--color-text-primary);
}

/* Primary button enhancement */
.btn-primary {
    background: linear-gradient(135deg, #0045ff 0%, #0099ff 100%);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 69, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 69, 255, 0.4);
    background: linear-gradient(135deg, #0038cc 0%, #0088ee 100%);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
    
    .login-form-panel {
        padding: 24px 20px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .social-buttons-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-social {
        padding: 14px 16px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .login-form-panel {
        padding: 20px 16px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-subtitle {
        font-size: 14px;
    }
    
    .toggle-password {
        right: 12px;
    }
}
/* ==========================================================================
   Registration Page Specific Styles
   ========================================================================== */

.terms-text {
    text-align: center;
    margin: 20px 0;
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.terms-text a.text-link {
    color: #0045ff;
    text-decoration: none;
    font-weight: 500;
}

.terms-text a.text-link:hover {
    text-decoration: underline;
}

/* Form group spacing for registration */
.form-group {
    margin-bottom: 20px;
}

/* Checkbox styling */
.remember-me {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.4;
}

.remember-me .form-check-input {
    margin-top: 2px;
    accent-color: #0045ff;
}

.remember-me label {
    margin-bottom: 0;
    cursor: pointer;
}

/* Password strength indicator (optional) */
.password-strength {
    margin-top: 8px;
    font-size: 12px;
}

.password-strength.weak {
    color: #ff4d4d;
}

.password-strength.medium {
    color: #ffa500;
}

.password-strength.strong {
    color: #00cc00;
}

/* Responsive adjustments for registration */
@media (max-width: 768px) {
    .terms-text {
        font-size: 13px;
        margin: 16px 0;
    }
    
    .remember-me {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .terms-text {
        font-size: 12px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
}
/* ==========================================================================
   Email Verification Page Styles
   ========================================================================== */

.verification-form {
    margin-top: 20px;
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--color-text-secondary);
    font-size: 14px;
}

.form-hint i {
    color: #0045ff;
    font-size: 14px;
}

.verification-options {
    margin: 24px 0;
    text-align: center;
}

.resend-code p {
    margin: 0 0 12px 0;
    color: var(--color-text-secondary);
    font-size: 14px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.resend-timer {
    display: block;
    margin-top: 8px;
    color: var(--color-text-secondary);
    font-size: 13px;
}

/* Verification Guidance */
.verification-guidance {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
}

.guidance-content {
    text-align: center;
    max-width: 400px;
}

.guidance-icon {
    font-size: 64px;
    color: #0045ff;
    margin-bottom: 24px;
}

.guidance-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: var(--color-text-primary);
}

.guidance-content p {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 32px 0;
}

.guidance-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #0045ff;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
}

.step-text {
    color: var(--color-text-primary);
    font-weight: 500;
}

/* Alert Styles */
.alert {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.2);
    color: #00c853;
}

.alert-danger {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.alert i {
    font-size: 18px;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    z-index: 1000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 300px;
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-success {
    background: rgba(0, 200, 83, 0.9);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: white;
}

.toast-error {
    background: rgba(244, 67, 54, 0.9);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: white;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-content i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .verification-guidance {
        padding: 20px;
    }
    
    .guidance-icon {
        font-size: 48px;
    }
    
    .guidance-content h3 {
        font-size: 20px;
    }
    
    .guidance-content p {
        font-size: 14px;
    }
    
    .step {
        padding: 12px;
    }
    
    .toast-notification {
        left: 20px;
        right: 20px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .guidance-steps {
        gap: 12px;
    }
    
    .step {
        padding: 10px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .step-text {
        font-size: 14px;
    }
}
/* ==========================================================================
   Forgot Password Page Specific Styles
   ========================================================================== */

.email-display-container {
    margin-bottom: 16px;
}

.email-display {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.email-display-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    cursor: not-allowed;
}

.email-display-input:focus {
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: none !important;
}

.btn-change-email {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-change-email:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-1px);
}

.btn-change-email i {
    font-size: 14px;
}

.email-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    font-size: 14px;
    margin: 0;
}

.email-note i {
    color: #0045ff;
    font-size: 14px;
}

.resend-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-text-secondary);
    font-size: 14px;
    margin: 16px 0 0 0;
    text-align: center;
    line-height: 1.5;
}

.resend-note i {
    color: #0045ff;
    font-size: 14px;
}

/* Password Guidance */
.password-guidance {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
}

.guidance-content {
    text-align: center;
    max-width: 400px;
}

.guidance-icon {
    font-size: 64px;
    color: #0045ff;
    margin-bottom: 24px;
}

.guidance-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: var(--color-text-primary);
}

.guidance-content p {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 32px 0;
}

.guidance-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #0045ff;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-text {
    color: var(--color-text-primary);
    font-weight: 500;
    text-align: left;
}

.security-tips {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.security-tips h4 {
    color: var(--color-text-primary);
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
}

.security-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-tips li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    font-size: 14px;
}

.security-tips li:last-child {
    margin-bottom: 0;
}

.security-tips li i {
    color: #0045ff;
    font-size: 14px;
    width: 16px;
}

/* Alert Improvements */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.2);
    color: #00c853;
}

.alert-danger {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.alert i {
    font-size: 18px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .email-display {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .btn-change-email {
        align-self: flex-end;
        width: auto;
    }
    
    .password-guidance {
        padding: 20px;
    }
    
    .guidance-icon {
        font-size: 48px;
    }
    
    .guidance-content h3 {
        font-size: 20px;
    }
    
    .guidance-content p {
        font-size: 14px;
    }
    
    .step {
        padding: 12px;
    }
    
    .security-tips {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .guidance-steps {
        gap: 12px;
    }
    
    .step {
        padding: 10px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .step-text {
        font-size: 14px;
    }
    
    .security-tips li {
        font-size: 13px;
    }
    
    .resend-note {
        flex-direction: column;
        gap: 4px;
    }
}