*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
}
body
{
   display: flex;
   align-items: center;
   justify-content: center ;
   min-height: 100vh;
   background: orange;
}
.container
{
    position: relative;
    width: 70vw;
    height: 80vh;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
}
.container::before
{
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #201e1d, #0c0c0c);
    
}
.signin-signup
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
}
.form
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60%;
    min-width: 250px;
    padding: 0 20px;
}
.title
{
  font-size: 50px;
  color: orangered;
  margin-bottom: 10px;
  
}
.input-field
{
    width: 100%;
    height: 50px;
    background: #fefefe;
    margin: 10px 0;
    border: 2px solid orangered;
    border-radius: 50px;
    display: flex;
    align-items: center;
}
.input-field i
{
    flex: 5;
    text-align: center;
    color: #666;
    font-size: 10px;
}
.input-field input
{
    flex: 5;
    background: none;
    border: none;
    outline: none;
    width: 90%;
    font-size: 15px;
    font-weight: 600;
    color: #444;
}
.btn
{
    width: 150px;
    height: 50px;
    border: none;
    border-radius: 50px;
    background: orangered;
    color: #fff;
    font-weight: 600;
    margin: 10px 0;
    text-transform: uppercase;
    cursor: pointer;
}
.btn:hover
{
    background: black;
}
span
{
color: white;
}

.social-text
{
    margin: 10px 0;
    font-size: 16px;
    color: #fff;
}
.social-media
{
    display: flex;
    justify-content: center;
}
.social-icon
{
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid white;
    border-radius: 50px;
    margin: 0 5px;
}
a
{
   text-decoration: none;
}
.social-icon:hover
{
     color: orangered;
     border-color: orangered;
}