body {
    background: linear-gradient(135deg, #e3ffdd, #bbffb1);
    font-family: Arial, sans-serif;
}

.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.register-box {
    background: #fff;
    padding: 35px;
    width: 350px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.register-box h2 {
    margin-bottom: 20px;
}

.register-box input,
.register-box select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.register-box button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.register-box button:hover {
    opacity: 0.9;
}

.register-box p {
    margin-top: 15px;
}