body {
    background-color: #f2e7d5;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.login-box h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: calc(100% - 30px);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    box-sizing: border-box;
    outline: none;
    font-size: 16px;
    transition: border-color 0.3s;
}

.login-box input[type="text"]:focus,
.login-box input[type="password"]:focus {
    border-color: #1372d1;
}

.login-box button {
    width: calc(100% - 30px);
    padding: 15px;
    background-color: #1372d1;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
background-color: #a8a58a;
    outline: none;
}

.login-box button:hover {
    background-color: #0a5aa3;
}

.login-box p {
    color: #666;
    font-size: 14px;
}