body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 400px;
    position: relative;
}

.profile-photo {
    position: absolute;
    top: -75px;
    left: calc(50% - 50px);
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-control {
    border-radius: 4px;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #ced4da;
}

.btn:focus {
    box-shadow: none;
    outline: none;
    border: none; 
}

.btn-login {
    border-radius: 20px;
    background-color: #57b447;
    color: #FFF;
    border: none;
    outline: none;
}

.btn-login:hover,
.btn-login:active,
.btn-login:visited {
    background-color: #51a842;
    color: #FFF;
}

#passwordError {
    visibility: hidden;
    color: red;
    margin-top: 15px;
    text-align: center;
    height: 10px;
    font-size: 1rem;
}