#magistra-login-wrap {
    max-width: 400px;
    margin: 0 auto;
    font-family: inherit;
}

#magistra-error {
    background: #fde8e8;
    border: 1px solid #f5c6c6;
    color: #c0392b;
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 14px;
}

.magistra-field {
    margin-bottom: 16px;
}

.magistra-field label,
.magistra-field span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.magistra-field input[type="text"],
.magistra-field input[type="password"],
.magistra-field select {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.magistra-field input:focus,
.magistra-field select:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

.magistra-field--radio label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: normal;
    margin-right: 16px;
    cursor: pointer;
}

#magistra-step1-form button,
#magistra-step2-form button[type="submit"] {
    width: 100%;
    padding: 10px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}

#magistra-step1-form button:hover,
#magistra-step2-form button[type="submit"]:hover {
    background: #135e96;
}

#magistra-step1-form button:disabled,
#magistra-step2-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#magistra-btn-back {
    display: block;
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: background 0.2s;
}

#magistra-btn-back:hover {
    background: #f5f5f5;
}
