*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}

Body {
    padding-top: 40px;
    background-color: white;
    font-family: 'Inter',sans-serif;
    height: 100vh;
    display: flex;

}

.header {
    position: fixed;
    top: 0;
    width: 100%;
}

.navbar {
    background-color: #23262F;
}

.navbar_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo {
    display: flex;
    align-items: center;
}

.logo_img {
    height: 100px;
}

.nav{
    transition: all 0.3s ease-in-out;
}

.nav_list {
    display: flex;
    column-gap: 40px;
}

.nav_item{

}

.nav_link{
    color: white;
    transition: all 0.2s;
}

.nav_link:hover,.nav_link:focus{
    color: blanchedalmond;
}

.btn_signup{
    color: white;
    background-color: #B29B6B;
    padding: 8px 20px;
    border-radius: 1000px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.2s;

}

.btn:hover {
    background-color: #af9c72;
}

.hamburger{
    cursor: pointer;
    display: none;
}

.bar {
height: 2px;
width: 27px;
background-color: white;
margin: 5px 0;
opacity: 0.8;
transition: all 0.3s ease-in-out;

}
.Left{
    align-items: start;
}

.Right{
   margin-left: 200px;
   margin-top: 200px;
    
}
.subtitle{
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}
.subtext{
    font-size: 0.8rem;
}

.create{
    font-size: 0.8rem;
    margin-left: 10px;
}
.container{
    position: relative;
    width: 100%;
    
    min-height: 100vh;
    overflow: hidden;
    margin-top: 100px;
    
}

.form-container{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
}
form{
   display: flex; 
   flex-direction: column;
   justify-content: center;
   align-items: center;

}
.title{
    font-size: 2.2rem;
    color: black;
    margin-bottom: 10px;
}
.input-field{
    max-width: 380px;
    width: 100%;
    height: 55px;
    background-color: #f0f0f0f0;
    margin: 10px 0;
    border-radius: 55px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;

}
.input-field i {
    text-align: center;
    line-height: 55px;
    color: black;
    font-size: 1.5rem;

}
.input-field input{
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1.2rem;
    color: rgb(0, 0, 0);
}

.input-field input:placeholder-shown
{
    color: rgb(0, 0, 0);
    font-weight: 500;

}

.btn{
    width: 150px;
    height: 49px;
    outline: none;
    border: none;
    border-radius: 10px;
    background-color: #23262F;
    color: beige;
    font-weight: 600;
    margin: 10px 0;
    transition: all 0.5s;
    text-align: center;
    padding: 14px;

}

.social-text{
    padding: 0.7rem 0 ;

}

.social-media{
    display: flex;
    justify-content: center;
}

.social-icon{
    height: 46px;
    width: 46px;
    border: 1px solid#333;
    margin: 0 0.45rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #23262F;
    font-size: 1.3rem;
    border-radius: 50%;
    transition: all 0.5s;

}

.social-icon:hover{
    color: aquamarine;
    border-color: aqua;

}