/* ==========================================================================
   EcoDesign Pro - Login Page Styles
   Styles specific to authentication pages (login, register, password reset)
   ========================================================================== */

/* Login Page Background */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        @font-face {
      font-family: 'Amsi';
      src: url('../fonts/amsi-pro-normal-regular.ttf') format('truetype'); /* or format('woff') if it's a .woff file */
    }
body.login-page {
    font-family: 'Amsi';
    background: linear-gradient(-45deg, #14b8a6, #0d9488, #059669, #047857, #065f46, #064e3b),
                url('https://origamiearth.com/img/branches-bg-1920-web.png');
    background-size: 400% 400%, cover;
    background-blend-mode: overlay;
    animation: gradientShift 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}
 @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            25% {
                background-position: 100% 50%;
            }
            50% {
                background-position: 100% 100%;
            }
            75% {
                background-position: 0% 100%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
/* Authentication Container */
.auth-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    margin: 20px;
}

/* Logo in Auth Container */
.auth-container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.auth-container img {
    max-height: 256px;
    max-width: 100%;
    height: auto;
}

/* Screen Management */
.screen {
    display: none;
}

.screen.active {
    display: block;
}

/* Form Overrides for Auth Pages */
.auth-container .btn {
    width: 100%;
    margin-bottom: 10px;
}

.auth-container .form-group input {
    font-size: 16px; /* Prevent zoom on iOS */
}

/* Password Requirements Text */
.auth-container small {
    color: #6c757d;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

/* Alert Overrides for Auth */
.auth-container .alert {
    margin: 15px 0;
}

/* Responsive Design for Auth */
@media (max-width: 480px) {
    .auth-container {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .auth-container img {
        max-height: 200px;
    }
}