body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #383434;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgb(240, 235, 235);
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.login-container:hover {
    transform: scale(1.008);
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

button {
    background-color: #236ba7;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #236ba7;
    transform: scale(1.008);
}

p {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

a {
    color: #236ba7;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
