* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom,#4CAF50, #009238 );
}

.login-box {
    background-color: lightgreen;
    border-radius: 20px;
    padding: 50px;
    width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.login-box h1 {
    text-align: center;
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
}

.login-box p {
    text-align: center;
    color: white;
    font-size: 14px;
    margin-bottom: 30px;
}

.login-box form {
    display: flex;
    flex-direction: column;
}

.login-box label {
    color: black;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
    margin-top: 10px;
}

.login-box input {
    background-color: #c0f1c0;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.3s;
}

.login-box input:focus {
    box-shadow: 0 0 0 3px #009238;
}

.login-box button {
    margin-top: 25px;
    padding: 14px;
    background: linear-gradient(to bottom, #009238, #4CAF50);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    
}

.login-box button:hover {
    background: linear-gradient(to bottom, #009238, #4CAF50);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid white;
}

.error {
    color: #ffcccc;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}
