body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.login-container {

    background-color: #E0E0E0;
    padding: 40px;
    border-radius: 25px; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); 
    width: 350px; 
    max-width: 90%; 
    animation: fadeIn 0.8s ease-out forwards;
}

.login-logo {
    width:fit-content;
    height: fit-content; 
    margin-bottom: 20px;
    object-fit: cover; 
}

.login-container h2 {
    margin-bottom: 30px;
    text-align: center;
    color: #736b6b; 
    font-size: 36px;
    font-weight: normal;
}

.form-group {
    margin-bottom: 20px; 
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px; 
    color: #736b6b;
    font-size: 18px; 
    font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: calc(100% - 20px); 
    padding: 15px 10px; 
    border: none; 
    border-radius: 15px;
    background-color: #F0F0F0;
    font-size: 16px;
    color: #333;
    outline: none;
}

.form-group input[type="submit"] {
    background-color: #4A90E2; 
    color: white;
    padding: 15px 20px; 
    border: none;
    border-radius: 15px; 
    cursor: pointer;
    font-size: 20px; 
    font-weight: normal;
    width: 100%;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: none; 
    margin-top: 30px; 
}

.form-group input[type="submit"]:hover {
    background-color: #3A7BD5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

