body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f3f4f6;
}

.auth-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-logo {
    margin-bottom: 20px;
    max-height: 60px;
}

.auth-toggle {
    margin-bottom: 20px;
}

.auth-toggle button {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    background: #e5e7eb;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.auth-toggle button.active {
    background: #4f46e5;
    color: white;
}

.auth-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.auth-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #444;
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.form-actions {
    margin-top: 20px;
}

.auth-btn {
    width: 100%;
    padding: 10px;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.auth-btn:hover {
    background: #3b38cc;
}

.toggle-link {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    color: #4f46e5;
    cursor: pointer;
}

.d-none {
    display: none;
}

.text-red-600 {
    color: #dc2626;
    font-size: 14px;
    margin-top: 5px;
}
