/* Frontend Student Admin Form */

/* Container */
.spa-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
}

/* Toast message */
.spa-toast {
    background-color: #004080;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
    animation: fadein 0.5s, fadeout 0.5s 3s;
}

/* Fade animations */
@keyframes fadein { from {opacity: 0;} to {opacity: 1;} }
@keyframes fadeout { from {opacity: 1;} to {opacity: 0;} }

/* Inline error / validation messages */
.spa-error {
    background-color: #fff3f3;
    border: 1px solid #ffb3b3;
    color: #b00000;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.spa-error ul {
    margin: 0;
    padding-left: 20px;
}

/* Form */
.spa-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f7f7f7;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.spa-form label {
    font-weight: bold;
}

.spa-form input,
.spa-form select,
.spa-form button {
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.spa-form button {
    background-color: #004080;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.spa-form button:hover {
    background-color: #0059b3;
}
