.auth-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f6f9;
}

.auth-box {
    width: 420px;
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.auth-box input[type="email"],
.auth-box input[type="password"],
.auth-box input[type="text"] {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.auth-box button {
    background: #8a2be2;
    color: white;
    padding: 12px 22px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}


select {
    display: block;
    width: 100%;
    height: 42px;
    margin-top: 4px;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background-color: white;
    font-size: 15px;
}

select:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25);
}



