/* Auth Layout Core Overrides */
body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Authentication Card Panel */
.auth-card {
    background: #ffffff;
    max-width: 440px;
    margin: 60px auto;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

/* Tab Switcher Interface Elements */
.tab-switcher {
    display: flex;
    background-color: #f1f3f5;
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 25px;
}
.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    outline: none !important;
}
.tab-btn.active {
    background-color: #ffffff;
    color: #198754;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Form Titles & Text Labels */
.welcome-title {
    font-size: 22px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 4px;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 6px;
}

/* Custom Input Field Containers & Icons */
.input-group-container {
    position: relative;
    width: 100%;
}
.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 15px;
    z-index: 4;
}
.form-control-custom {
    height: auto;
    padding: 10px 15px 10px 42px !important;
    border-radius: 8px !important;
    border: 1px solid #ced4da;
    font-size: 14px;
    background-color: #ffffff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control-custom:focus {
    border-color: #198754 !important;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.15) !important;
    outline: none;
}

/* Context Links */
.forgot-link {
    float: right;
    font-size: 13px;
    color: #198754;
    font-weight: 500;
    text-decoration: none !important;
}
.forgot-link:hover {
    text-decoration: underline !important;
}

/* Brand Button Interface Elements */
.btn-brand-action {
    width: 100%;
    background-color: #198754;
    color: #ffffff;
    border: none;
    padding: 11px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.15s ease;
}
.btn-brand-action:hover {
    background-color: #146c43;
}
.btn-brand-action:focus {
    outline: none;
}

/* Divider Ornament Style */
.divider-container {
    display: flex;
    align-items: center;
    text-align: center;
    color: #adb5bd;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 20px 0;
}
.divider-container::before,
.divider-container::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}
.divider-container::before {
    margin-right: 10px;
}
.divider-container::after {
    margin-left: 10px;
}

/* Google Sign-in Structural Styles */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: #ffffff;
    color: #495057;
    border: 1px solid #ced4da;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background-color 0.15s ease;
}
.btn-google:hover {
    background-color: #f8f9fa;
    color: #212529;
}

/* Custom Checkbox Alignment styling */
.custom-checkbox input[type="checkbox"] {
    transform: translateY(1px);
}