/* Reset Password Page Styles */

/* Left Panel - Background Gradient */
.auth-page .reset-left-panel {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
}

/* Logo Sizes */
.auth-page .reset-pantawid-logo {
    max-height: 80px;
}

.auth-page .reset-dswd-logo {
    max-height: 50px;
}

.auth-page .reset-footer-logo {
    max-height: 18px;
}

/* Reset Password Form Container */
.auth-page .reset-form-container {
    max-width: 500px;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .auth-page .reset-form-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .auth-page .reset-dswd-logo {
        max-height: 40px;
    }
    
    .auth-page .reset-footer-logo {
        max-height: 16px;
    }
}

@media (max-width: 360px) {
    .auth-page .reset-dswd-logo {
        max-height: 35px;
    }
    
    .auth-page .reset-footer-logo {
        max-height: 14px;
    }
}

body {
  background-image: url(/assets/img/app/bg.png);
  background-size: 100% 100%;
  background-attachment: fixed;
  background-position: center;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}