/* W3T Management Frontend Styles */

.w3t-form {
    max-width: 500px;
    /* margin: 20px auto; */
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.w3t-form-group {
    margin-bottom: 20px;
}

.w3t-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.w3t-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.w3t-form-group input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.w3t-btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.w3t-btn-primary {
    background: #007cba;
    color: white;
}

.w3t-btn-primary:hover {
    background: #005a87;
    transform: translateY(-1px);
}

.w3t-btn-secondary {
    background: #6c757d;
    color: white;
}

.w3t-btn-secondary:hover {
    background: #545b62;
}

.w3t-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 4px;
    font-weight: 500;
}

.w3t-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.w3t-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.w3t-registration-container,
.w3t-login-container {
    max-width: 600px;
    margin: 0 auto;
}

.w3t-registration-container h3,
.w3t-login-container h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
}

.w3t-login-links,
.w3t-register-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

.w3t-login-links a,
.w3t-register-links a {
    color: #007cba;
    text-decoration: none;
    font-weight: 600;
}

.w3t-login-links a:hover,
.w3t-register-links a:hover {
    text-decoration: underline;
}

/* Loading state */
.w3t-form.loading {
    opacity: 0.7;
    pointer-events: none;
}

.w3t-form.loading .w3t-btn::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: w3t-spin 1s linear infinite;
}

@keyframes w3t-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .w3t-form {
        margin: 10px;
        padding: 20px;
    }
    
    .w3t-registration-container,
    .w3t-login-container {
        max-width: 100%;
        padding: 0 15px;
    }
}



/* student dashboard */
