@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    background-color: #f8f9fa;
}

#auth-logo {
    padding: 8% 10%;
    background: linear-gradient(135deg, #0a81b8 0%, #065b82 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
}

#auth-logo h1 {
    font-weight: 700;
    margin: 0;
    font-size: 2rem;
}

/* Modernize Inputs */
.form-control {
    border-radius: 8px;
    border: 1px solid #e0e4e8;
    padding: 12px 15px;
    height: auto;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}

.form-control:focus {
    border-color: #0a81b8;
    box-shadow: 0 0 0 3px rgba(10, 129, 184, 0.15);
    outline: none;
}

/* Modernize Buttons */
.btn-info,
.btn-info.disabled {
    background: linear-gradient(135deg, #02A9F4 0%, #0088cc 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    box-shadow: 0 4px 10px rgba(2, 169, 244, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.btn-info:hover {
    background: linear-gradient(135deg, #0088cc 0%, #02A9F4 100%);
    box-shadow: 0 6px 15px rgba(2, 169, 244, 0.4);
    transform: translateY(-1px);
}

/* General Layout */
#form-section {
    background: #ffffff;
    height: 100vh;
    padding-left: 0;
    padding-right: 0;
    box-shadow: 5px 0 15px rgba(0,0,0,0.05);
    z-index: 10;
    position: relative;
    overflow-y: auto; /* Allows scrolling for long registration forms */
}

#auth-form {
    max-width: 80%;
    margin-top: 6%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2rem;
}

/* Background section fills full height */
#background-section {
    min-height: 100vh;
    background-attachment: local;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Responsive: on mobile, stack vertically */
@media (max-width: 991px) {
    #background-section {
        display: none;
    }
    #form-section {
        height: auto;
        min-height: 100vh;
    }
    #auth-form {
        max-width: 90%;
        margin-top: 5%;
    }
}

/* Auth Image Button */
.auth-image-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #0a81b8;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 2rem;
}

.auth-image-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    color: #065b82;
}

.form-group {
    margin-bottom: 1.5rem;
}

.checkbox-primary label {
    font-weight: 500;
    cursor: pointer;
}

.text-primary {
    color: #0a81b8 !important;
}

.imgCustom200pxCircle {
    border: 4px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    width: 200px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}