body {
    background: linear-gradient(135deg, #242525, #00c6ff, #242525);
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.registration-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.registration-form h2 {
    margin-bottom: 25px;
    color: #000000;
    text-align: center;
}

.registration-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.registration-form input{
    margin-bottom:10px;
    width:60%;
}

.registration-form button {
    padding: 12px;
    width:60%;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.registration-form button:hover {
    background-color: #0056b3;
}