body{
    background-color: #f0f0f0;
}
.login-container {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    max-width: 400px;
    width: 80%;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
    display: grid;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
}

.input-group input {   
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.show-password {
    cursor: pointer;
}

.remember-me {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember-me input {
    margin-right: 10px;
    cursor: pointer;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #0177c1;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    justify-content: center;
}

button[type="submit"]:hover {
    background-color: #01558a;
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
}

.forgot-password:hover {
    color: #01558a;
}
.signup{
    text-align: center;
}
.signup a{
    text-decoration: none;
    color: #000;
}
.signup span{
    color: #0177c1;
    font-weight: 600;
}
.signup:hover a{
    color: #01558a;
}