/* A professional, clean, and modern authentication page style */

.auth-wrapper {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa; /* Light gray background */
}

.auth-card {
    background-color: #fff;
    border: 1px solid #e0e0e0; /* Subtle border */
    border-radius: 8px; /* Slightly smaller border radius */
    overflow: hidden;
    /* No box-shadow */
}

.auth-form-section {
    padding: 40px;
}

/* A more abstract and professional background for the graphic section */
.auth-graphic-section {
    background: #0d233a; /* Dark blue solid color */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.auth-graphic-section h2 {
    font-weight: bold;
    margin-bottom: 15px;
}

.auth-graphic-section .logo-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    border-radius: 8px;
    font-weight: bold;
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}