.login {
    background-color: white;
    width: 50%; /* Set a width */
    margin: 0 auto; /* Horizontally center */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    border: 1px solid #e0e0e0;
}

.login h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.field input[type="email"],
.field input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.field input[type="checkbox"] {
    margin-right: 10px;
}

.actions input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.actions input[type="submit"]:hover {
    background-color: #45a049;
}
