* {
    font-family: "Arimo", "sans-serif";
}

body {
    background-color: #7eabf2;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_form {
    padding: 60px;
    width: 300px;
    border-radius: 5px;
    border-width: 2px;
    font-family: "Arimo", "sans-serif";
    background-color: white;
    display: flex;
    flex-direction: column;
}

#h1 {
    display: flex;
    justify-content: left;
}

#h2 {
    font-size: 15px;
    color: gray;
    margin-bottom: 20px;
    align-items: center;
}


.casete:focus {
    outline: none;
}


.casete,
#box-password {
    font-size: 14px;
    height: 35px;
    width: 100%;
    border: 1px solid black;
    margin-bottom: 10px;
    border-radius: 5px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    transition: border 0.2s ease;
}

.casete:hover,
#box-password:hover {
    border: 1px solid #0077ff;
}

/* Input simplu */
.casete {
    padding-left: 10px;
}

/* Input din interiorul casetei parolei */
#casete-password {
    flex: 1;
    height: 90%;
    border: none;
    outline: none;
    font-size: 14px;
}

/* Iconul */
#box-password img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}



#remembertext {
    margin-right: auto;
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 200;
}

#rememberbutton {
    height: 14px;
    width: 4px;
    background-color: white;
    border-radius: 3px;
    border: 1px solid black;
    margin-left: 5px;
}

#rememberbutton:hover {
    border: 1px solid #0077ff;
}

#row {
    display: flex;
    justify-content: space-between;
}

#butonlogin {
    height: 35px;
    background-color: #0077ff;
    /* background-color: red; */
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
}

#butonlogin:hover {
    box-shadow: 0 0 10px #0077ff;
}

#signup {
    color: #0077ff;
    padding-bottom: 10px;
}