@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-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.7em;
    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;
    border-radius: 5px;
    transform: scale(0);
    transition: .5s;
}

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

.home{
    position: relative;
    width:100%;
    height:100vh;
    background: url('background-2.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: #ffffff;
    text-decoration: none;
    border: 2px solid #fff;
    font-weight: 500;
    padding: 10px 40px;
    border-radius: 40px;
    transition: .5s;
}

.content a:hover{
    background: #1e0b04;
}

.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: 17px;
}

.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: #1e0b04;
    margin-right: 3px;
}

.remember-forgot a{
    color: #fff;
    text-decoration: none;   
}

.remember-forgot a:hover{
    text-decoration: underline;
}

.wrapper-login .btn{
    width:100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius:40px;
    background: linear-gradient(90deg,#1e0b04,#71412a);
    box-shadow: 0 8px 10px rgba(0,0,0,.5);
    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;

}
.separator {
    position: relative;
    text-align: center;
    margin: 30px 0;
}
.separator hr{
    margin-bottom: 10px;
}
.separator p {
    color: #fff;
    font-size: 0.9em;
    padding: 0 10px;
    display: inline-block;
    z-index: 1;
    position: relative;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.social-icon ion-icon {
    color: #fff;
    font-size: 1.5em;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}