 /* Login page specific styles */
 .login-page {
     background: linear-gradient(135deg, #014AB2 0%, #0066CC 100%);
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px 0;
 }

 .login-container {
     background: rgba(255, 255, 255, 0.95);
     border-radius: 25px;
     padding: 50px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     width: 100%;
     max-width: 450px;
     backdrop-filter: blur(10px);
 }

 .login-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .login-header .logo {
     max-width: 150px;
     margin-bottom: 20px;
 }

 .login-header h2 {
     color: #014AB2;
     font-weight: 700;
     margin-bottom: 10px;
     font-size: 2rem;
 }

 .login-header p {
     color: #666;
     font-size: 1rem;
 }

 .login-input {
     color: #014AB2 !important;
     background-color: rgba(255, 255, 255, 0.9) !important;
     border: 2px solid rgba(1, 74, 178, 0.2) !important;
     border-radius: 15px;
     padding: 18px 25px;
     font-size: 16px;
     font-weight: 500;
     font-family: "Roboto", sans-serif;
     transition: all 0.3s ease;
     width: 100%;
     box-sizing: border-box;
     margin-bottom: 20px;
     height: 60px;
 }

 /* .login-input:focus {
     background-color: #ffffff !important;
     border-color: #FFFC00 !important;
     color: #014AB2 !important;
     outline: none;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(255, 252, 0, 0.3);
 } */

 .login-input::placeholder {
     color: #999 !important;
     font-weight: 400;
     font-size: 16px;
     font-family: "Roboto", sans-serif;
 }

 .login-btn {
     background: linear-gradient(135deg, #FEE16D 0%, #FFFC00 100%) !important;
     color: #014AB2 !important;
     border: none;
     border-radius: 25px;
     padding: 18px 40px;
     font-size: 18px;
     font-weight: 700;
     font-family: "Roboto", sans-serif;
     transition: all 0.3s ease;
     width: 100%;
     height: 60px;
     cursor: pointer;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 20px;
 }

 .login-btn:hover {
     background: linear-gradient(135deg, #FFFC00 0%, #FEE16D 100%) !important;
     color: #014AB2 !important;
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(255, 252, 0, 0.4);
 }

 .login-btn:active {
     transform: translateY(-1px);
     box-shadow: 0 4px 15px rgba(255, 252, 0, 0.3);
 }

 .login-btn:disabled {
     opacity: 0.7;
     cursor: not-allowed;
     transform: none;
 }

 .forgot-password {
     text-align: center;
     margin: 20px 0;
 }

 .forgot-password a {
     color: #014AB2;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .forgot-password a:hover {
     color: #FFFC00;
     text-decoration: underline;
 }

 .signup-link {
     text-align: center;
     margin-top: 30px;
     padding-top: 20px;
     border-top: 1px solid rgba(1, 74, 178, 0.1);
 }

 .signup-link p {
     color: #666;
     margin-bottom: 15px;
 }

 .signup-link a {
     color: #014AB2;
     text-decoration: none;
     font-weight: 600;
     padding: 12px 30px;
     border: 2px solid #014AB2;
     border-radius: 25px;
     transition: all 0.3s ease;
     display: inline-block;
 }

 .signup-link a:hover {
     background: #014AB2;
     color: #ffffff;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(1, 74, 178, 0.3);
 }

 .remember-me {
     display: flex;
     align-items: center;
     margin-bottom: 20px;
 }

 .remember-me input[type="checkbox"] {
     margin-right: 10px;
     transform: scale(1.2);
     accent-color: #014AB2;
 }

 .remember-me label {
     color: #666;
     font-weight: 500;
     cursor: pointer;
 }

 .social-login {
     margin: 30px 0;
     text-align: center;
 }

 .social-login p {
     color: #666;
     margin-bottom: 20px;
     position: relative;
 }

 .social-login p::before,
 .social-login p::after {
     content: '';
     position: absolute;
     top: 50%;
     width: 40%;
     height: 1px;
     background: rgba(1, 74, 178, 0.2);
 }

 .social-login p::before {
     left: 0;
 }

 .social-login p::after {
     right: 0;
 }

 .social-btn {
     display: inline-block;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     margin: 0 10px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     transition: all 0.3s ease;
     font-size: 20px;
 }

 .social-btn.google {
     background: #db4437;
     color: white;
 }

 .social-btn.facebook {
     background: #3b5998;
     color: white;
 }

 .social-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .back-home {
     position: absolute;
     top: 20px;
     left: 20px;
     color: #014AB2;
     text-decoration: none;
     font-weight: 500;
     padding: 10px 20px;
     border-radius: 25px;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
     z-index: 10;
 }

 .back-home:hover {
     background: rgba(255, 255, 255, 1);
     color: #014AB2;
     text-decoration: none;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(1, 74, 178, 0.15);
 }

 /* Responsive for 1280x720 and similar resolutions */
 @media (max-width: 1280px) and (min-width: 720px) {
     .back-home {
         top: 15px;
         left: 15px;
         padding: 8px 16px;
         font-size: 14px;
     }
 }

 @media (max-width: 768px) {
     .back-home {
         top: 10px;
         left: 10px;
         padding: 8px 14px;
         font-size: 13px;
     }
 }

 /* Custom Modal Styles */
 .custom-modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 10000;
 }

 .custom-modal {
     background: #ffffff;
     border-radius: 20px;
     padding: 40px;
     max-width: 450px;
     width: 90%;
     text-align: center;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
     animation: slideIn 0.3s ease;
 }

 @keyframes slideIn {
     from {
         opacity: 0;
         transform: translateY(-50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .custom-modal-icon {
     font-size: 64px;
     margin-bottom: 20px;
 }

 .custom-modal-icon.success {
     color: #28a745;
 }

 .custom-modal-icon.error {
     color: #dc3545;
 }

 .custom-modal h2 {
     color: #014AB2;
     font-size: 24px;
     margin-bottom: 15px;
     font-weight: 500;
 }

 .custom-modal p {
     color: #666;
     font-size: 16px;
     margin-bottom: 25px;
     line-height: 1.6;
 }

 .custom-modal-btn {
     background: #014AB2;
     color: #ffffff;
     border: none;
     border-radius: 8px;
     padding: 12px 30px;
     font-size: 16px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .custom-modal-btn:hover {
     background: #003d8f;
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(1, 74, 178, 0.3);
 }

 /* Responsive design */
 @media (max-width: 768px) {
     .login-container {
         padding: 30px 20px;
         margin: 20px;
     }

     .login-header h2 {
         font-size: 1.5rem;
     }

     .login-btn {
         padding: 16px 30px;
         font-size: 16px;
     }
 }