/* Nati Almaliah & Tamir Zilberman */

/*sign in design*/
#show-pass {
    display: inline-block;
    width: 30px;
    transform: scale(1.2) translateY(4px);

}

#show-pass-div {
    display: flex;
    justify-content: flex-end;
    padding-right: 15px;

}

#sign-up-form h2,
#login-form h2 {
    margin: 25px auto;

}

#sign-up-guest-div {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin-top: 15px;

}


#username,
#password {

    background-repeat: no-repeat;
    background-position: 96%;
    background-size: 7.5%;
    padding-right: 35px;
}

#password {
    background-image: url("../images/password.png");
}

#username {
    background-image: url('../images/username.png');
}


#sign-up-guest-div a {
    text-decoration: none;
    color: rgb(122, 50, 50);
}


/*sign in design*/

/*sign up design*/
#sign-up-form {
    display: none;
}


#close {
    display: block;
    margin-left: 95%;
    cursor: pointer;
}

#close:hover {
    color: black;
}

/*sign up design*/


/*both design*/
#sign-in-up-Body {
    display: flex;
    justify-content: center;
    background-image: url("../images/login-back.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: rgba(70, 70, 70, 0.973);
}

#login-form,
#sign-up-form {
    /*width: 100%;*/
    position: fixed;
    top: 7%;
    text-align: center;
    border-radius: 20px;
    padding: 15px;
    max-width: 300px;
    width: 280px;
    background-color: rgba(172, 172, 172, 0.445);
    overflow: auto;
    max-height: 85%;
}


input,
select,
option {
    width: 92%;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: 'Rubik', sans-serif;
    font-weight: bold;

}

input:focus {
    background-color: rgba(180, 180, 180, 0.719);
}

input[type=submit] {
    width: 50%;
    margin-top: 10%;
    margin-bottom: 2%;
    border: none;
}

input[type=submit]:hover {
    background-color: rgba(172, 172, 172, 0.966);
}

input[type=submit]:active {
    transform: translateY(2px);
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
select,
option {
    opacity: 0.7;
    text-align: right;
}

p {
    margin-bottom: 10px;
}


/*both design*/