/* Login Form Styles */
.auth-page {
    height: 100vh !important;
    margin: 0;
    overflow: hidden;
}

.auth-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Left Side - Login Form */
.auth-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    /* background: linear-gradient(135deg, #7ff7fc 0%, #00989e 100%); */
    padding: 2rem;
    position: relative;
    overflow-y: auto;
}

/* Decorative Elements */
.auth-left::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.auth-left::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.login-form-container {
    width: 100%;
    max-width: 500px;
    z-index: 10;
    position: relative;
}

/* Error Messages */
.alert-custom {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.alert-custom .close {
    color: #dc3545;
}

.alert-custom ul {
    margin: 0;
    padding-left: 1rem;
}

/* Login Card */
.login-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2); */
}

/* Logo */
.login-logo {
    max-height: 70px;
    width: auto;
}

/* Title */
.login-title {
    color: #333;
    font-weight: 700;
    margin: 0;
    font-size: 1.5rem;
}

.login-subtitle {
    color: #666;
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.input-wrapper {
    position: relative;
}

.form-input {
    height: 40px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 0 1rem 0 2.3rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 100%;
}

.form-input:focus {
    border-color: #00989e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(62, 83, 177, 0.1);
    outline: none;
}

.form-input:not(:focus) {
    border-color: #e1e5e9;
    background: #f8f9fa;
    box-shadow: none;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
}

/* Login Button */
.login-button {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #7ff7fc 0%, #00989e 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.login-button:active {
    transform: translateY(0);
}

/* Links */
.form-links {
    text-align: center;
}

.form-link-text {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.form-link {
    color: #00989e;
    text-decoration: none;
    font-weight: 600;
}

.form-link:hover {
    text-decoration: underline;
}

/* Copyright */
.copyright-section {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e1e5e9;
}

.copyright-text {
    color: #999;
    font-size: 0.75rem;
}

/* Right Side - Background Image */
.auth-right {
    flex: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Overlay */
.auth-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #7ff8fc68, #00999e81);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

/* Content Overlay */
.auth-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    padding: 2rem;
    max-width: 500px;
}

.auth-content-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.auth-content-text {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column !important;
    }
    
    .auth-left {
        flex: none !important;
        height: 100vh !important;
        padding: 1rem !important;
    }
    
    .auth-right {
        display: none !important;
    }
    
    .login-card {
        padding: 2rem !important;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 1.5rem !important;
    }
    
    .auth-left {
        padding: 0.5rem !important;
    }
    
    .auth-content-title {
        font-size: 2rem;
    }
    
    .auth-content-text {
        font-size: 1rem;
    }
}