body{
    background-color: #544bda;
}

/* Container */
.auth-container {
    max-width: 400px;
    margin: 60px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    font-family: "Segoe UI", sans-serif;
}

/* Form */
.auth-form .form-group {
    margin-bottom: 18px;
}

/* Labels */
.auth-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    color: #333;
}

/* Inputs */
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    width: 90%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border 0.3s, box-shadow 0.3s;
}

.auth-form input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79,70,229,0.2);
    outline: none;
}

/* Remember Me */
.remember-me {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.remember-me input {
    margin-right: 8px;
}

/* Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Forgot Password Link */
.forgot-password {
    font-size: 13px;
    color: #4f46e5;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #3730a3;
}

/* Forgot Password Link */
.create-account {
    font-size: 13px;
    color: #4f46e5;
    text-decoration: none;
    transition: color 0.3s;
}

.create-account:hover {
    color: #3730a3;
}

/* Primary Button */
button, .x-primary-button {
    background: #4f46e5;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

button:hover, .x-primary-button:hover {
    background: #4338ca;
}

/* Errors */
.auth-form .input-error {
    font-size: 13px;
    color: #dc2626;
    margin-top: 4px;
}
