body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f4f4f4;
    font-family: "Times New Roman", serif;
    margin: 0;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 0.6rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    text-align: center;
}

h3 {
    margin-bottom: 0.3rem;
    font-weight: 400;
}

input {
    width: 100%;
    padding: 0.6rem;
    margin-bottom: 1rem;
    border-radius: 0.4rem;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

input:focus {
    border-color: #666;
    outline: none;
}

button {
    width: 100%;
    padding: 0.6rem;
    background: #5f1384c0;
    color: white;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background: #0056b3;
}

p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

a {
    color: #5f1384c0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

