body {
   font-family: 'Poppins';
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f7fc;
    margin: 0;
}

.container {
   font-family: 'Poppins';
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo img {
    width: 100px;
    margin-bottom: 20px;
}

.login-form {
   font-family: 'Poppins';
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.input-group {
   font-family: 'Poppins';
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
   font-family: 'Poppins';
    display: block;
    margin-bottom: 5px;
}

.input-group input {
   font-family: 'Poppins';
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn{
   font-family: 'Poppins';
    width: 95%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: grey;
    color: white;
    font-size: 18px;
    cursor: pointer;
   font-weight: bold;
}

btn:hover {
    background-color: #383838;
}

.forgot-password {
   font-family: 'Poppins';
    display: block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.illustrations {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 08px;
}

.left-illustration, .right-illustration {
    width: 350px;
    height: auto;
}

@media (max-width: 768px) {
    .illustrations {
        display: none;
    }
}

h2 {
   font-family: 'Poppins';
  font-size: 20px;
}
