/* ---------- white wrapper ---------- */
.glass-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.register-container {
    width: clamp(320px, 90%, 400px);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.register-container h2 {
    color: #650640;
    margin-bottom: 1.5rem;
    margin-right: 1rem;
    font-weight: 600;
}

/* ---------- inputs ---------- */
.register-container label {
    display: block;
    color: #650640;
    margin: 0.5rem 0 0.25rem;
    font-size: 0.9rem;
}

.register-container input[type="text"],
.register-container input[type="password"],
.register-container input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #650640;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.register-container input::placeholder {
    color: #9ca3af;
}
.register-container input:focus {
    border-color: #650640;
    box-shadow: 0 0 0 3px rgba(101, 6, 64, 0.1);
}

/* ---------- button ---------- */
.btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.8rem;
    border: none;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #650640;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s;
}
.btn:hover { background: #f0f0f0; }

/* ---------- link ---------- */
.login {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #650640;
}
.login a {
    color: #650640;
    text-decoration: none;
}
.login a:hover {
    color: #f4bfad;
    text-decoration: underline;
}