* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    font-size: 62.5%;
    background-color: #21C088;
}
.header {
    background-color: #21C088;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
}
.header__img {
    width: 200px;
}
.header__menu {
    margin-right: 20px;
}
.header__menu ul {
    display: none;
    list-style: none;
    position: absolute;
    width: 100px;
    text-align: right;
    margin: 0 0 0 -15px;
}
.header__menu:hover ul, ul:hover {
    display: block;
} 
.header__menu li {
    margin: 10px 0px;
}
.header__menu li a {
    text-decoration: none;
    font-size: 0.9rem;
    color: white;
}
.header__menu li a:hover {
    text-decoration: underline;
}
.header__menu--profile {
    margin-right: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
    color: white;
}
.header__menu--profile p {
    font-size: 0.9rem;
    text-align: center;
}
/* carousel */
.main {
    height: 300px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.main__title {
    width: auto;
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}
.categories__title{
    color: white;
    font-size: 1.4rem;
    position: absolute;
    padding-left: 30px;
    width: 100%;
}
.main__input {
    width: 300px;
    height: 40px;
    padding: 0 10px;
    border: 2px solid white;
    border-radius: 25px;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    outline: none;
}
.main__input::placeholder {
    color: white;
}
.carousel {
    width: 100%;
    overflow-x: scroll;
    padding: 30px;
    position: relative;
    margin-bottom: 50px;
}
.carousel__container {
    white-space: nowrap;
    margin: 70px 0 30px;
    padding-bottom: 10px;
}
.carousel-item {
    width: 200px;
    height: 250px;
    position: relative;
    display: inline-block;
    border-radius: 20px;
    background-color: black;
    overflow: hidden;
    margin-right: 10px;
    transition: 450ms all;
    transform-origin: center left;
}
.carousel-item:hover ~ .carousel-item {
    transform: translate3d(100px, 0, 0);
}
.carousel__container:hover .carousel-item{
    opacity: 0.3;
}
.carousel__container:hover .carousel-item:hover {
    transform: scale(1.5);
    opacity: 1;
}
.carousel-item:hover .carousel-item__details {
    opacity: 1;
}
.carousel-item__img {
    width: 200px;
    height: 250px;
    object-fit: cover;
}
.carousel-item__details {
    background: linear-gradient(to top, rgba(0, 0 ,0, 0.9) 0, rgba(0,0,0,0) 100%);
    font-size: 1rem;
    opacity: 0;
    transition: 450ms opacity;
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}
.carousel-item__details img {
    width: 40px;
}
/* end carousel */
/* login */
.login {
    background: linear-gradient(#21C088, #094d35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    min-height: calc(100vh - 160px);
}
.login__container {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 40px;
    color: white;
    padding: 60px 30px 60px;
    width: 100%;
    min-width: 320px;
    max-width: 500px;
    flex-direction: column;
    justify-content: space-around;
}
.login__container h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 50px;
}
.login__container--form {
    display: flex;
    flex-direction: column;
}
.login__container--form label {
    font-size: 1.1rem;
}
.login__container--remember-me {
    color: white;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 40px;
    align-items: center;
}
.login__container--remember-me label {
    font-size: 0.9rem;
}
.login__container--remember-me a {
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
}
.login__container--remember-me a:hover {
    text-decoration: underline;
}
.login__container--social-media > div {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.login__container--social-media {
    margin: 0 0 40px;
}
.login__container--social-media > div > img {
    width: 25px;
    margin-right: 10px;
}
.login__container--social-media > div > a {
    text-decoration: none;
    cursor: pointer;
    color: white;
}
.login__container--social-media > div > a:hover {
    text-decoration: underline;
}
.login__container--register {
    font-size: 0.9rem;
    text-align: center;
}
.login__container--register a {
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}
.login__container--register a:hover {
    text-decoration: underline;
}
.login__container--form .input {
    margin-bottom: 20px;
    padding: 0 20px;
    background-color: transparent;
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    border-bottom: 2px solid white;
    color: white;
    font-size: 1.1rem;
    outline: none;
    height: 50px;
}
.login__container--form input::placeholder {
    color: white;
}
.login__container--form .button {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    height: 40px;
    margin: 10px 0;
}
/* end login */
/* Footer */
.footer {
    display: flex;
    align-items: center;
    height: 100px;
    width: 100%;
    background-color: #094d35;
    justify-content: space-evenly;
}
.footer a {
    font-size: 0.9rem;
    color: white;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}
/* End Footer */