/* Authentication Page Styles */

/* Fixed width column for auth cards */
.col-auth {
    width: 100%;
    max-width: 420px;
    min-width: 320px;
}

.auth-card {
    margin-top: 2rem;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.auth-card .card-header {
    background-color: #212529;
    color: white;
    border-radius: 12px 12px 0 0;
    padding: 1.25rem;
}

.auth-card .card-header h4 {
    color: white;
}

.auth-card .card-body {
    padding: 2rem;
}

.auth-card .form-label {
    font-weight: 500;
    color: #495057;
}

.auth-card .input-group-text {
    background-color: #f8f9fa;
    border-right: none;
    color: #6c757d;
}

.auth-card .input-group .form-control {
    border-left: none;
}

.auth-card .input-group .form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

.auth-card .input-group:focus-within .input-group-text,
.auth-card .input-group:focus-within .form-control {
    border-color: #212529;
}

.auth-card .btn-dark {
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.auth-card .btn-dark:hover {
    background-color: #343a40;
}

.auth-link {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
}

.auth-link:hover {
    text-decoration: underline;
    color: #000;
}

/* Footer styles */
.footer {
    border-top: 1px solid #dee2e6;
}

.footer .footer-text {
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.beerware-logo {
    height: 35px;
    width: auto;
    opacity: 0.7;
    vertical-align: middle;
}

.beerware-logo:hover {
    opacity: 1;
}

/* Toast container positioning */
#toast-container {
    z-index: 9999;
}

/* Dropdown menu styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.dropdown-item {
    padding: 0.5rem 1rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item.text-danger:hover {
    background-color: #f8d7da;
}
