/* Login style */

.auth-wrapper {
    margin-top: 3rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-card {
    background-color: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #383838;
    border-radius: 15px;
    padding: 2.5rem;
    color: #f8f9fa;
    max-width: 500px;
    width: 100%;
}
.auth-title {
    color: #a7ffeb;
    font-weight: bold;
    margin-bottom: 2rem;
}
.form-control, .form-select {
    background-color: #2a2a2a;
    border-color: #383838;
    color: #f8f9fa;
    padding: 0.75rem 1rem;
}
.form-control:focus, .form-select:focus {
    background-color: #2a2a2a;
    color: #f8f9fa;
    border-color: #a7ffeb;
    box-shadow: 0 0 0 0.25rem rgba(167, 255, 235, 0.25);
}
.form-label {
    font-weight: 500;
}
/*
 * Change the placeholder color for all fields with the .form-control class
 */
.form-control::placeholder {
    color: #6c757d; /* Standard Bootstrap "muted" color */
    opacity: 1; /* Firefox requires this to change the color */
}
/* For compatibility with older browser versions */
.form-control::-webkit-input-placeholder {
    color: #6c757d;
}
.form-control::-ms-input-placeholder {
    color: #6c757d;
}
.auth-footer {
    border-top: 1px solid #383838;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    color: #adb5bd;
}
.auth-footer a {
    color: #a7ffeb;
    text-decoration: none;
    font-weight: 500;
}