/* Authentication page styles */
.authentication-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
}

.bg-overlay {
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.auth-logo {
    max-width: 120px;
    height: auto;
}

.auth-form-group-custom .input-group-text {
    border: 1px solid #ced4da;
    border-right: none;
    background-color: #f8f9fa;
}

.auth-form-group-custom .form-control {
    border-left: none;
}

.auth-form-group-custom .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-label-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: #fff;
}

.btn-label-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.btn-label-dark {
    background-color: #343a40;
    border-color: #343a40;
    color: #fff;
}

.btn-label-success {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.signin-other-title {
    position: relative;
}

.signin-other-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #dee2e6;
}

.signin-other-title .title {
    background-color: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .hstack.gap-3 {
        flex-direction: column;
    }

    .vstack.gap-2 {
        margin-bottom: 10px;
    }
}
