/* Auth Pages Styling (Login & Registration) */
.auth-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image:  url('../img/TK9YiquICO6MWVai7JCQWhykq6BoiIHyBhvI6jsi.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.auth-container {
    max-width: 500px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.auth-container h2 {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #24544B;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.auth-container h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #DE5701;
}

.auth-form-group {
    margin-bottom: 20px;
}

.auth-form-group label {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #24544B;
    display: block;
    margin-bottom: 8px;
}

.auth-form-group label span {
    color: #DE5701;
}

.auth-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.auth-form-control:focus {
    outline: none;
    border-color: #24544B;
    box-shadow: 0 0 0 2px rgba(36, 84, 75, 0.2);
}

.auth-form-control.is-invalid {
    border-color: #dc3545;
}

.auth-btn {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    background-color: #DE5701;
    border: none;
    border-radius: 6px;
    padding: 14px 25px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.auth-btn:hover {
    background-color: #C54E01;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.auth-link {
    color: #DE5701;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: #C54E01;
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #555;
}

.auth-footer a {
    color: #DE5701;
    text-decoration: none;
    font-weight: 500;
}

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

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

/* Background Elements */
.auth-background-element {
    position: absolute;
    z-index: 1;
}

.auth-bg-element-left {
    bottom: 50px;
    left: 10%;
    max-width: 200px;
    opacity: 0.6;
}

.auth-bg-element-center {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 250px;
    opacity: 0.6;
}

.auth-bg-element-right {
    bottom: 50px;
    right: 10%;
    max-width: 200px;
    opacity: 0.6;
}

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

    .auth-container h2 {
        font-size: 28px;
    }

    .auth-bg-element-left, .auth-bg-element-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .auth-container {
        padding: 25px 15px;
    }

    .auth-container h2 {
        font-size: 24px;
    }

    .auth-bg-element-center {
        max-width: 150px;
    }
}
