* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #2E2E2E;
    color: #A0C4FF;
    font-family: 'Stentiga', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
h1 {
    text-align: center;
    margin-bottom: 20px;
}
form {
    width: 100%;
    max-width: 350px; /* Set maximum width */
    background-color: #3a3a3a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
form * {
    margin-bottom: 15px; /* Space between elements */
}
input, button {
    width: 100%;
    padding: 15px;
    background-color: #444;
    color: #A0C4FF;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}
button {
    cursor: pointer;
    background-color: #3a3a3a;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #7A9EFF;
}
p {
    text-align: center;
    color: red;
}
@media (max-width: 480px) {
    form {
        width: 90%; /* Make form width responsive for smaller screens */
    }
    input, button {
        font-size: 14px; /* Adjust font size for smaller screens */
        padding: 12px; /* Reduce padding for smaller screens */
    }
}