
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    background-size: cover;
    background-attachment: fixed;
    
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url(photos/ai-generated-8671002_1280.jpg);
}
.icon{
    width: 200px;
    height: 70px;
    float: left;
}

.logo{
    color: #ff7200;
    font-size: 35px;
    font-family: arial;
    float: left;
    padding-left: 20px;
    padding-top: 10px;

}
.menu{
    width: 400px;
    float: left;
    height: 70px;

}

ul{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul li{
    list-style: none;
    margin-left: 62px;
    margin-top: 27px;
    font-size: 14px;

}

ul li a{
    text-decoration: none;
    color: #fff;
    font-family: arial;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

ul li a:hover{
    color: #ff7200;
}
.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110vh;
    /*background: linear-gradient(to top, rgba(0,0,0,0.8)50%,rgba(0,0,0,0.8)50%) ;*/
}

.nav{
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-around;
    width: 20%;
    line-height: 100px;
    background: (to top, rgba(0,0,0,0.8)50%,rgba(0,0,0,0.8)50%);
    z-index: 100;

}

.nav-logo p{
    color: #ff7200;
    font-size: 25px;
    font-weight: 600;
}

.nav-menu ul{
    display: flex;
}

.nav-menu ul li{
    list-style-type: none;

}

.nav-menu ul li .link{
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    padding-bottom: 15px;
    margin: 0 25px;
}

.link-active:hover{
    background: #fff;
    color: #ff7200;
    border: 2px solid #ff7200;
    box-shadow: 0 0 5px #ff7200,
                0 0 25px #ff7200;
    cursor: pointer;
    transform: scale(1.1);
}
.btn a{
    text-decoration: none;
}

.nav-button .btn{
    width: 130px;
    height: 40px;
    font-weight: bold;
    background:#ff7200 ;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.4s ease;
    color: #000;
    text-decoration: none;
}

#registerBtn{
    margin-left: 15px;
}

#loginBtn{
    margin-left: 15px;
}

.btn:hover{
    background: #fff;
    color: #ff7200;
    border: 2px solid #ff7200;
    box-shadow: 0 0 5px #ff7200,
                0 0 25px #ff7200;
    cursor: pointer;
    transform: scale(1.1);


}

.nav-menu-btn{
    display: none;
}

.form-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 512px;
    height: 500px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.8)50%,rgba(0,0,0,0.8)50%);


}

.login-container{
    position: absolute;
    left: 4px;
    width: 500px;
    display: flex;
    flex-direction: column;
    transition: .5s ease-in-out;


}
.register-container{
    position: absolute;
    width: 500px;
    display: flex;
    flex-direction: column;
    transition: .5s ease-in-out;


}

.top span{
    color: #fff;
    font-size: medium;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    


}

.top span a{
    margin-left: 5px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;

}

header{
    color: #ff7200;
    font-size: 30px;
    text-align: center;
    padding: 10px 0 30px 0;
}

.two-forms{
    display: flex;
    gap: 10px;
}

.input-field{
    width: 100%;
    height: 50px;
    background: transparent;
    border-bottom: 1px solid #ff7200;
    border-top: none;
    border-right: none;
    border-left: none;
    color: #fff;
    font-size: 1    5px;
    letter-spacing: 1px;
    margin-top: 30px;
    font-family: sans-serif;
    border-radius: 10px;
    outline: none;
    padding: 0 10px 0 45px;
    transition: .2s ease;
}

.input-field:hover, .input-field:focus{
    background: rgba(255, 255, 255, 0.24);
}

::placeholder{
    color: #fff;
    font-family: arial;
    font-weight: 500;
}

::placeholder:hover{
    color: rgba(255, 255, 255, 0.24);
    font-size: 12px;
    transform: translateY(-20px);
}

.input-box i{
    position: relative;
    top: -35px;
    left: 17px;
    color: #fff;
}

.submit{
    font-size: 20px;
    font-weight: bold;
    color: #000;
    height: 45px;
    width: 50%;
    border: none;
    border-radius: 10px;
    outline: none;
    background: #ff7200;
    margin-left: 100px;
    margin-top: 10px;
    transition: .4s ease;


}

.submit:hover{
    background: #fff;
    color: #ff7200;
    border: 2px solid #ff7200;
    box-shadow: 0 0 5px #ff7200,
                0 0 25px #ff7200;
    cursor: pointer;
    transform: scale(1.1);
}

.two-col{
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: small;
    margin-top: 10px;
    font-weight: 400;
}

.two-col .one{
    display: flex;
    gap: 5px;
}

.two label a{
    text-decoration: none;
    color: #fff;
    font-weight: 300;
}


.two label a:hover{
    text-decoration:underline;
    color: #ff7200;
}