* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #a777e3, #6e8efb);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.register-container h2 {
    margin-bottom: 25px;
    text-align: center;
    color: #a777e3;
}

.register-form label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.register-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.register-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #a777e3, #6e8efb);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.register-form button:hover {
    background: linear-gradient(to right, #9058e1, #5a75e0);
}

.login-link {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

.login-link a {
    color: #6e8efb;
    text-decoration: none;
}
