body {
    font-family: Montserrat, Montserrat;
    margin: 0;
    padding: 0;
    background-color: #4d4e89;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    padding: 40px;
    text-align: center;
    width: 320px;
}

.logo {
    width: 80px; /* Adjust size as needed */
    margin-bottom: 20px;
}

.login-form {
    margin-top: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.forgot-password {
    margin-bottom: 20px;
}

.forgot-password a {
    color: #755dbe;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #755dbe;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #624da1;
}
