body {
    font-family: 'Arial', sans-serif;
    background-color: #a6a6f0;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    width: 400px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid #e0e0e0;
}

h1 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
    color: #007bff;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #555555;
}

input,
button {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    background-color: #f9f9f9;
    color: #333333;
    font-size: 1em;
}

input:focus,
button:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

button {
    background-color: #5959f8;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #014ea0;
}

.result {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.result h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #007bff;
}

.result p {
    font-size: 1.1em;
    margin: 5px 0;
}