/* Frontend Student Admin Form

.spa-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spa-form h3 {
    margin: 0 0 10px;
    color: #003366;
    text-align: center;
}

.spa-form input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.spa-form input:focus {
    border-color: #004080;
    outline: none;
}

.spa-form label {
    font-weight: bold;
    margin-top: 5px;
}

.spa-form button {
    background: #004080;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.spa-form button:hover {
    background: #0059b3;
}

.spa-success {
    max-width: 500px;
    margin: 20px auto;
    background: #e6ffe6;
    border: 1px solid #00aa00;
    color: #006600;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
} */

/* 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;} }

/* 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 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;
}
