/*https://codepen.io/lsgrrd/pen/ARxboe*/
@import url(http://weloveiconfonts.com/api/?family=entypo);
@import url(https://fonts.googleapis.com/css?family=Roboto);

#body {
    background-color: #1e3d59;
    font-family: Amaranth, sans-serif;
}

#head {
    margin: 70px 0 60px 0;
    display: flex;
    justify-content: space-between;
}

#title {
    font-size: 60px;
    margin: 0 0 0 70px;
    font-style: italic;
    font-weight: bold;
    color: #f5f0e1;
}

#login {
    float: right;
    height: 121px;
    width: 50px;
    border: 0;
    background: #ff6e40;
    border-radius: 7px;
    padding: 10px;
    color: #1E3D59;
    font-size: 22px;
}

#click {
    display: none;
}

.click-me {
    font-family: Amaranth, sans-serif;
    background: #f5f0e1;
    color: #ff6e40;
    font-weight: bold;
    font-size: 20px;
    margin-right: 70px;
    border-radius: 16px 16px 16px 16px;
    padding: 5px 15px 5px 15px;
    border-width: 0;
    align-self: center;
    cursor: pointer;
}

.center, .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.content {
    position: fixed;
    visibility: hidden;
    height: 300px;
    background: #f5f0e1;
    padding: 0 10px 0 10px;
    box-sizing: border-box;
    border-radius: 5px;
    border-style: solid;
    border-color: black;
}

#click:checked ~ .content {
    visibility: visible;
}

#error {
    color: red;
    margin-left: 16px;
    display: block;
    text-align: center;
}

#times {
    position: absolute;
    right: 10px;
    top: 20px;
    font-size: 25px;
    background: #dde1e7;
    padding: 3px 11px;
    border-radius: 50%;

    box-shadow: -4px -4px 7px #fffdfdb7,
    3px 3px 5px rgba(94, 104, 121, 0.24);
    cursor: pointer;
}

#account {
    position: fixed;
    margin: 0 0 0 70px;
    background-color: #f5f0e1;
    border-style: none;
    border-radius: 15px 15px;
    width: 350px;
    height: 520px;
}

#accountHeader {
    padding: 25px 20px 25px 20px;
}

#accountHeaderTitle {
    color: #ff6e40;
    font-size: 20px;
    margin: 0 0 10px 0;
}

#accountSeparator {
    margin: 0;
}

.accountInfos {
    display: flex;
    margin: 0 0 0 20px;
}

#moviesWatched {
}

#accountInfosDeny {
    margin: 180px 20px 0 20px;
    text-align: center;
    font-style: italic;
}

.infosTitle, .infosNbr {
    margin: 0 0 2px 0;
}

#headerMovies {
    width: 1140px;
    height: 40px;
    padding: 8px 8px 8px 8px;
    background: #f5f0e1;
    color: #ff6e40;
    border-style: none;
    border-radius: 10px 10px 10px 10px;
    font-weight: bold;
    font-size: 20px;
}

#listMovies {
    margin: 0 0 0 550px;
}

.infosNbr {
    color: #FFC13B;
    font-size: 15px;
    font-weight: bold;
    align-self: center;
    padding-left: 5px;
}

.movie {
    display: inline-block;
    width: 200px;
    height: 288px;
    padding: 8px;
    margin: 30px 20px 0 10px;
    background: #f5f0e1;
    border-style: none;
}

.movieImage {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 170px;
    height: 245px;
    padding-top: 10px;
}

/* zocial */
[class*="entypo-"]:before {
    font-family: 'entypo', sans-serif;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


h2 {
    color: #201E20;
    margin-left: 16px;
}

form {
    position: relative;
    margin: 50px auto;
    width: 380px;
    height: auto;
}

input {
    padding: 16px;
    border-radius: 7px;
    border: 0;
    background: rgba(255, 255, 255, .2);
    display: block;
    margin: 15px;
    width: 300px;
    color: #201E20;
    font-size: 18px;
    height: 54px;
}

button:hover {
    cursor: pointer;
}

.inputUserIcon {
    position: absolute;
    top: 68px;
    right: 80px;
    color: #FFC13B;
}

.inputPassIcon {
    position: absolute;
    top: 136px;
    right: 80px;
    color: #FFC13B;
}

.movieTitle {
    position: relative;
    margin-top: 5px;
    text-align: left;
    display: inline-block;
}

.movieStar {
    float: right;
    margin-top: 7px;
    margin-right: 10px;
}

.movieStar:hover, .movieStarChecked{
    color: #f5b647;
}

.movieTitle .movieTitleText {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 150%;
    left: 50%;
    margin-left: -60px;
}

.movieTitle .movieTitleText::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.movieTitle:hover .movieTitleText {
    visibility: visible;
}
