@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", "sansa-serif";
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

.header .logo{
    font-size: 1.5em;
    color: #fff;
    text-decoration: none;
}

.nav a{
    position: relative;
    font-size: 1.1em;
    color: #fff;
    text-decoration: none;
    margin-left: 40px;
}

.nav a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #fff;
    background: #E48F45;
    border-radius: 5px;
    transform: scale(0);
    transition: .5s;
}

.nav a:hover::after{
    transform: scale(1);
}

.home{
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("Imagenes/oil-106913_1280.jpg")no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 100px 0;
}

.home .content{
    max-width: 600px;
    color: #fff;
}

.content h2{
    font-size: 3em;
    letter-spacing: .03em;
}

.content p{
    margin: 10px 0 40px;
}

.content a{
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    font-weight: 500;
    padding: 10px 40px;
    border-radius: 40px;
    transform: .5s;
}

.content a:hover{
    background: #E48F45;
}
.home .wrapper-login{
    position: relative;
    width: 440px;
}

.wrapper-login h2{
    font-size: 2em;
    color: #fff;
    text-align: center;
}

.wrapper-login .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 40px 0;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid #fff;
    outline: none;
    border-radius: 40px;
    font-size: 1em;
    color: #fff;
    padding: 0 25px 0 45px;
}

.input-box label{
    position: absolute;
    top: 50%;
    left: 45px;
    transform: translateY(-50%);
    font-size: 1em;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}

.input-box input:focus~label,
.input-box input:valid~label{
    font-size: .8em;
    top: -14px;
    left: 14px;

}

.input-box .icon{
    position: absolute;
    top: 14px;
    left: 15px;
    font-size: 1.2em;
    color: #fff;
}

.wrapper-login .remember-forgot{
    font-size: .9em;
    color: #fff;
    font-weight: 500;
    margin: -25px 0 15px;
    display: flex;
    justify-content: space-between;
}

.remember-forgot label input{
    accent-color:#E48F45;
    margin-right: 3px;
}

.wrapper-login a{
    text-decoration: none;
    color: #fff;
}

.wrapper-login a:hover{
    text-decoration: underline;
}

.wrapper-login .btn{
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 70px;
    background: linear-gradient(90deg, #442405, #E48F45);
    box-shadow: 0 8px 10px #00000080;
    cursor: pointer;
    font-size: 1em;
    color: #fff;
    font-weight: 500;
}

.wrapper-login .register-link{
    font-size: .9em;
    color: #fff;
    text-align: center;
    margin: 30px 0;
}

.register-link p a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}


.register-link p a:hover{
    text-decoration: underline;
}


