/* Login Page Styles */
.premium-login-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../images/2.png') center center/cover no-repeat fixed;
}

.premium-login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.login-container {
    position: relative;
    z-index: 2;
    display: flex;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.login-form-wrapper {
    flex: 1;
    padding: 50px;
    position: relative;
    z-index: 2;
}

.login-sidebar {
    flex: 0 0 40%;
    background: linear-gradient(135deg, #2D3250, #424769);
    color: #fff;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.login-sidebar::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: url(../images/wave-bg.svg);
    opacity: 0.1;
    z-index: 0;
    transform: rotate(30deg);
}

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

.login-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a202c;
}

.login-header p {
    color: #666;
    font-size: 16px;
}

.login-error {
    background-color: #fff5f5;
    border-left: 4px solid #e53e3e;
    color: #e53e3e;
    padding: 12px 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2D3250;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid rgba(45, 50, 80, 0.2);
    border-radius: 8px;
    font-size: 15px;
    color: #2D3250;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

.input-with-icon input:focus {
    border-color: #7077A1;
    box-shadow: 0 0 0 3px rgba(66, 71, 105, 0.2);
    outline: none;
    background-color: #fff;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7077A1;
    font-size: 18px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2461FF;
}

.form-submit {
    margin-top: 30px;
}

.premium-button-primary {
    background: linear-gradient(135deg, #424769, #2D3250);
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 15px rgba(45, 50, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-button-primary:hover {
    background: linear-gradient(135deg, #2D3250, #424769);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(45, 50, 80, 0.4);
}

.premium-button-primary:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(45, 50, 80, 0.2);
}

.login-form-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(45, 50, 80, 0.1);
    text-align: center;
}

.login-form-footer p {
    margin: 10px 0;
    color: #424769;
}

.login-form-footer a {
    color: #2D3250;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-form-footer a:hover {
    color: #7077A1;
    text-decoration: underline;
}

.login-options {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}

.login-form-footer a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-options a:hover {
    text-decoration: underline;
}

.login-sidebar-content {
    position: relative;
    z-index: 1;
}

.login-sidebar-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
}

.login-sidebar-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-features {
    margin-top: 40px;
}

.sidebar-feature {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    padding-left: 10px;
}

.sidebar-feature i {
    font-size: 22px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.sidebar-feature span {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #fff;
}

.login-benefits {
    position: relative;
    z-index: 1;
}

.login-benefits h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    margin-right: 15px;
    color: #6ee7b7;
    font-size: 18px;
}

.login-testimonial {
    margin-top: 50px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
}

.author-title {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .login-container {
        flex-direction: column;
        width: 90%;
        max-width: 500px;
    }
    
    .login-form-wrapper,
    .login-sidebar {
        width: 100%;
    }

    .login-sidebar {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0 0 15px 15px;
    }
}

@media (max-width: 576px) {
    .premium-login-page {
        padding: 20px;
    }
    
    .login-container {
        width: 100%;
        margin: 0;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .login-form-wrapper,
    .login-sidebar {
        padding: 30px 20px;
    }
    
    .login-form-header h2 {
        font-size: 24px;
    }
    
    .login-form-header p {
        font-size: 14px;
    }
    
    .login-options {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .login-header h2 {
        font-size: 28px;
    }
}
