.login-container {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;

    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

#login-form {
    width: 300px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 20px;
}

#login-form input {
    width: 278px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#login-form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#login-form button:hover {
    background-color: #0056b3;
}

#login-form input[type=submit] {
    width: 300px;
    margin-top: 10px;
}

#iconeye {
    margin: auto 0 auto -25px;
    vertical-align: text-bottom;
    cursor: pointer;
    background: url('../images/icon-eye-slash.png') no-repeat;
    background-size: 100% 100%;
    height: 20px;
    width: 20px;
    float: right;
    position: relative;
    z-index: 2;
    margin-top: 10px;
    margin-right: 5px;
}

.row{
    display: flex;
    flex-direction: row;
    padding-left:14px;
}

#div-forgot-password {
    text-align: right;
}
#forgot-password {
    color: grey;
    text-decoration: none;
}