/* /login/login.css */


.login-container {
    margin-top: 50px;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #184e77;
    border: none;
}

.card-header {
    background-color: #184e77;
    color: #ffffff;
    border-bottom: none;
}

.card-header-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.form-control {
    background-color: #ffffff;
    color: #333333;
}

.form-control::placeholder {
    color: #a0a0a0;
}

.btn-primary {
    background-color: #00bfff;
    color: #000000;
}

.btn-primary:hover {
    background-color: #009acd;
}

.text-center a {
    color: #ffffff;
}

.text-center a:hover {
    color: #e0e0e0;
}

.alert-danger, .alert-success {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.75rem; /* NEW: Match edit-matter.css */
    border-radius: 0.5rem; /* NEW: Match edit-matter.css */
}

.input-group-text {
    background-color: #ffffff;
    color: #184e77;
}

.spinner-border {
    display: none;
    margin-left: 10px;
}

.resend-link {
    cursor: pointer !important;
    color: #00bfff !important;
}

.resend-link:hover {
    color: #009acd !important;
}