/* ==================================================
   Font & Body
================================================== */
body {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #eef1f4; /* A slightly more refined background color */
}

/* ==================================================
   Main Auth Container
================================================== */
.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.auth-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    min-height: 600px;
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ==================================================
   Branding Column (Left Side)
================================================== */
.auth-branding-column {
    flex-basis: 45%;
    background-color: black; /* Primary Color */
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Subtle SVG Pattern from Hero Patterns */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23ffffff' fill-opacity='0.1' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.99 7.5V30L0 22.5zM15 15l12.99 7.5V30L15 22.5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.branding-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.branding-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ==================================================
   Form Column (Right Side)
================================================== */
.auth-form-column {
    flex-basis: 55%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-logo {
    width: 170px;
    height: 60px;
    object-fit: contain;
    /* margin-bottom: 1rem; */
}

.auth-title {
    font-weight: 700;
    color: #333;
}

/* ==================================================
   Form Elements Styling
================================================== */
.form-control {
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    background-color: #f9fafb;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #ffd66b; /* Accent Color */
    background-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(255, 214, 107, 0.3);
}

.input-group-text {
    cursor: pointer;
    background-color: #f9fafb;
    border: 1px solid #e5e5e5;
    border-left: none;
    transition: all 0.2s ease;
}
.form-control:focus + .input-group-text {
    border-color: #ffd66b;
    background-color: #fff;
}

.auth-link {
    color: black;
    text-decoration: none;
    font-weight: 500;
}
.auth-link:hover {
    color: #22635c;
}

/* ==================================================
   Main Action Button
================================================== */
.auth-btn {
    background-color: #ffd66b; /* Accent Color */
    color: black; /* Primary Color Text */
    border: none;
    border-radius: 0.5rem;
    padding: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 214, 107, 0.4);
}
.auth-btn:hover {
    background-color: #f0c354;
    color: #22635c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 107, 0.5);
}

/* ==================================================
   Responsive Design
================================================== */
@media (max-width: 991.98px) {
    .auth-branding-column {
        display: none; /* Hide branding column on smaller screens */
    }
    .auth-form-column {
        flex-basis: 100%;
    }
    .auth-container {
        flex-direction: column;
        min-height: auto;
        max-width: 500px;
    }
    .auth-form-column, .auth-card .card-body {
        padding: 2rem;
    }
}