body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   /* background: #e9ecef;*/
   background: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
.logo {
    position: absolute;
    max-width: 200px;
    top: 12%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.login-container {
    background: rgb(249, 250, 249);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(154, 154, 154, 0.818);
    width: 350px;
    z-index: 2000;

}

.login-form h2 {
    color: #495057;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.login-form input {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 25px;
    border: 1px solid #ced4da;
    background-color: #f8f9fa;
    box-sizing: border-box;
    font-size: 16px;
    color: #495057;
    
}

button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #02e537;
    border-color: #02e537;
}

button {
    background: #00ff3c;
    color: rgb(64, 62, 62);
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
    font-weight: bold;
}

button:hover {
    background: #02e537;
}

.options {
    margin-top: 25px;
    text-align: center;
}

.options a {
    text-decoration: none;
    color: #555555;
    margin: 0 10px;
    font-size: 14px;
}

.options a:hover {
    text-decoration: underline;
}


