/* Form styling for the public Request Access page (reuses the login shell). */
.ra-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.ra-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.ra-field span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475979;
}

.ra-field input,
.ra-field textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 12px 14px;
    border: 1px solid #7391C8;
    border-radius: 12px;
    background: #fff;
    color: #475979;
    box-sizing: border-box;
    resize: vertical;
}

.ra-field input:focus,
.ra-field textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(115, 145, 200, 0.3);
}

.ra-error {
    margin: 0;
    color: #c0392b;
    font-size: 0.9rem;
    font-weight: 700;
}

.ra-submit {
    margin-top: 4px;
    padding: 14px 18px;
    border: none;
    border-radius: 999px;
    background: #52688F;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.ra-submit:hover { background: #7391C8; }
.ra-submit:disabled { opacity: 0.6; cursor: default; }

.ra-success {
    text-align: center;
    color: #475979;
}

.ra-success h3 {
    margin: 0 0 6px;
    color: #50b948;
}

.ra-back {
    margin: 16px 0 0;
    text-align: center;
    font-size: 0.9rem;
}

.ra-back a {
    color: #52688F;
    font-weight: 700;
    text-decoration: none;
}
