body {
    background-color: #8c8c8c;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1e293b;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

input {
    width: 300px;
    height: 55px;
    font-size: 22px;
    padding: 0 15px;
    border: none;
    border-radius: 10px;
    background: #1e293b;
    color: #e2e8f0;
    box-sizing: border-box;
}

button {
    width: 300px;
    height: 55px;
    font-size: 22px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    background: #34b7eb;
    color: white;
    cursor: pointer;
}

p {
    font-size: 20px;
}