@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

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

body{
   background: #fff;
   text-align: center;
   font-family: "Outfit", serif;
   min-height: 100vh;
}

.logo{
   margin-top: 20px;
}

.sigin-container{
   max-width: 350px;
   border: 1px solid #d2d2d2;
   margin: auto;
   margin-top: 20px;
   padding: 20px 26px;
   border-radius: 8px;
   text-align: left;
}

.sigin-title{
   font-size: 28px;
   font-weight: 400;
}

.input-lable{
   margin-top: 20px;
}

.sigin-container input{
   width: 100%;
   height: 32px;
   margin-top: 5px;
   padding: 3px 7px;
   border-radius: 3px;
   border: 1px solid #a0a0a0;
   font-size: 12px;
}

.sigin-container input:focus{
   outline: 3px solid #c2f2ff;
}

.sigin-container button{
   width: 100%;
   height: 32px;
   margin: 15px 0;
   background: #ffd814;
   border: none;
   border-radius: 8px;
   cursor: pointer;
}

.sigin-container button:hover{
   background: #ebc712;
}

.sigin-codit{
   font-size: 12px;
}

.sigin-container p span{
   color: #0066c0;
}

.sigin-help{
   font-size: 13px;
   margin: 20px 0;
}

.sigin-container hr{
   border: none;
   height: 1px;
   background: #d4d4d4;
}

.sigin-container h4{
   margin: 15px 0;
   font-size: 13px;
}

.sigin-bussiness{
   font-size: 13px;
}

.sigin-bottom{
   width: 350px;
   font-size: 13px;
   color: #737373;
   margin: 20px auto;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 6px;
}

.sigin-bottom hr{
   border: none;
   height: 1px;
   background: #d4d4d4;
   width: 110px;
}

.sigin-signup-btn{
   width: 350px;
   height: 30px;
   font-size: 13px;
   background: #fff;
   border-radius: 5px;
   border: 1px solid #c3c3c3;
}

.sigin-signup-btn:hover{
   background: #f1f1f1;
}

footer{
   width: 100%;
   height: auto;
   max-height: 200px;
   margin-top: 20px;
   padding: 20px 0;
   position: fixed;
   bottom: 0;
   background: linear-gradient(to bottom, #f4f4f4, #fff);
   border: 2px solid #ededed;
   font-size: 12px;
}

footer .footer-links{
   display: flex;
   justify-content: center;
   gap: 30px;
   margin-bottom: 20px;
}

footer .footer-links a{
   text-decoration: none;
   color: #0066c0;
}