body {
    font-family: Arial, sans-serif;
    background-color:rgba(8, 31, 58, 0.281);
    align-items: center;
    height: 100vh;
}
    
    .login-container {
    width: 500px;
    margin: 0 auto;
  
    padding: 30px;
    background:rgba(42, 66, 131, 0.315);
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-family: cursive;
    font-size: 25px;
    }
    
    h2 {
    text-align: center;
    margin-bottom: 20px;
   
    }
    
    .form-group {
    margin-bottom: 15px;
}

    
    label {
    display: block;
    font-weight: bold;
    }

input[type="text"],
input[type="password"] {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 3px;
}

button[type="submit"] {
width: 100%;
padding: 10px;
background-color:rgba(66, 107, 218, 0.288);
color: #fff;
border: none;
border-radius: 3px;
cursor: pointer;
transition: background-color 0.3s ease;
}


button[type="submit"]:hover {
background-color:

#1e38816b;

}
