/* Custom Authentication Styles */

body.auth-page {
    background-color: #f5f7fa;
    font-family: 'Open Sans', sans-serif;
    height: 100vh;
    overflow: hidden;
}

.auth-container {
    height: 100vh;
    display: flex;
    align-items: stretch;
}

/* Left Hero Section */
.auth-hero {
    background: linear-gradient(135deg, #30a5ff 0%, #1ebfae 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    /* Optional pattern overlay */
    opacity: 0.1;
}

.auth-hero-content {
    z-index: 1;
    max-width: 500px;
}

.auth-logo {
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-logo img {
    max-width: 80px;
}

.auth-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.auth-hero p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Right Form Section */
.auth-form-section {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    overflow-y: auto;
}

.auth-form-container {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

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

.auth-header h2 {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.auth-header p {
    color: #777;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    height: 50px;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #30a5ff;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(48, 165, 255, 0.1);
}

.btn-primary-custom {
    background-color: #30a5ff;
    color: white;
    border: none;
    height: 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.btn-primary-custom:hover {
    background-color: #2690e0;
}

.auth-footer {
    margin-top: 30px;
    text-align: center;
    color: #777;
}

.auth-footer a {
    color: #30a5ff;
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    body.auth-page {
        height: auto;
        overflow-y: auto;
    }

    .auth-container {
        flex-direction: column;
        height: auto;
    }

    .auth-hero {
        padding: 40px 20px;
        min-height: 300px;
    }

    .auth-form-section {
        padding: 40px 20px;
        min-height: 500px;
    }
}