@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&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');

*{
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: Outfit;
}
body{
    background: #fff;
    text-align: center;
    font-family: Outfit;
    min-height: 100vh;
}
.logo{
     margin-top:20px;
}
.signin-container{
    max-width: 350px;
    border:1px solid #d2d2d2;
    margin: auto;
    margin-top:20px;
    padding:20px 26px;
    text-align: left;

}
.signin-title{
    font-size:28px;
    font-weight: 400;
}
.input-lable{
    margin-top:20px;
}
.signin-container input{
    width:100%;
    height: 32px;
    margin-top: 5px;
    padding:3px 7px;
    border-radius: 3px;
    border:1px solid #a0a0a0; 
    font-size:12px;
}
.signin-container input:focus{
    outline:3px solid #c2f2ff;
}
.signin-container button{
    width:100%;
    height:32px;
    margin: 15px 0;
    background: #ffd814;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.signin-container button:hover{
    background: #ebc712;

}
.signin-condition{
    font-size: 12px;
}
.signin-container p span{
    color:#0066c0;
}
.signin-help{
    margin:20px 0;
    font-size: 13px;
}
.signin-container hr{
    border:none;
    height: 1px;
    background: #d4d4d4;
}
.signin-container h4{
    margin:15px 0 ;
    font-size: 13px;
}
.signin-business{
    font-size: 13px;
}
.signin-bottom{
    width:350px;
    font-size: 13px;
    color:#737373;
    margin:20px auto;
    align-items: center;
    justify-content: center;
    gap:6px;
    display: flex;

}
.signin-bottom hr{
    border:none;
    height: 1px;
    background: #d4d4d4;
    width:110px;

}
.signin-signup-btn{
    width:350px;
    height: 30px;
    font-size:13px;
    background:#fff;
    border:1px solid #c3c3c3;
    border-radius: 5px;
}
.signin-signup-btn:hover{
    background: #f1f1f1;
}
footer{
    width:100%;
    height:auto;
    max-height:200px;
    margin-top:15px;
    padding:20px 0;
    position:fixed;
    bottom: 0;
    background: linear-gradient(to bottom,#f4f4f4,#fff);
    border: 2px solid #ededed;
}
footer .footer-links{
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 20px;
}
footer .footer-links a{
    text-decoration: none;
    color:#0066c0
}