/* Full screen overlay */
.modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
}

/* Header */
.modal-header {
    background: #2f6b2f;
    color: #fff;
    padding: 20px;
    font-size: 22px;
    text-align: center;
    border-radius: 6px 6px 0 0;
}

/* Body */
.modal-body {
    background: #fff;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    border-radius: 0 0 6px 6px;
}

/* Alerts */
.alert {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}

.alert-info {
    background: #e7f3ff;
    color: #084298;
}

.alert-warning {
    background: #fff3cd;
    color: #664d03;
}

/* Login form */
#loginform p {
    margin-bottom: 15px;
}

#loginform input[type="text"],
#loginform input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 15px;
}

#loginform input[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: #2f6b2f;
    color: #fff;
    border: none;
    cursor: pointer;
}

#loginform input[type="submit"]:hover {
    background: #245424;
}

/* Footer text */
.lead {
    font-weight: bold;
    margin-top: 20px;
}

.kwc {
    font-size: 13px;
    opacity: 0.7;
}
