body {
    margin: 0;
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(to right top, #00f2fe, #5050ff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

input {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.5rem;
    font-size: 1rem;
    border-width: 3px;
    border-radius: 16px;
    transition: 0.5s;
}

input:focus {
    border-radius: 4px;
    border-color: #5050ff;
}

button {
    background: #5050ff;
    color: white;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.5s;
}

button:hover {
    background: #00c6ff;
    border-radius: 4px;
}