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

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #ffffff;
    text-align: center;
    font-family: Outfit;
    min-height: 100vh;
}
.logo{
    margin-top: 28px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.login-container{
    max-width:320px;
    border: 1px solid #e6e6e6;
    margin: 34px auto 14px auto;
    padding: 18px 20px;
    border-radius: 6px;
    text-align: left;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.login-title{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 6px;
    color: #111111;
}
.input-lable{
    margin-top: 14px;
    font-size: 13px;
    color: #111;
}
.login-container input{
    width: 100%;
    height: 34px;
    margin-top: 6px;
    padding: 6px 8px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}
.login-container input:focus{
    outline: 3px solid #e6f8ff;
}
.login-container button{
    width: 100%;
    height: 36px;
    margin: 12px 0px 10px 0px;
    background: #FFD814;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    box-shadow: 0 2px 0 rgba(0,0,0,0.04) inset;
}
.login-container button:hover{
    background: #ebc712;
}
.login-condition{
    font-size: 12px;
    color: #333;
    line-height: 1.4;
}
.login-container p span{
    color: #0066c0;
}
.login-condition a{ color:#0066c0; text-decoration: underline; }
.login-help{
    font-size: 13px;
    margin: 8px 0px 18px 0px;
}
.login-help a{ color: #0066c0; text-decoration: none; }
.login-help a{ color: #0066c0; text-decoration: none; }
hr{
    border: none;
    height: 1px;
    background-color: #d4d4d4;
}
.login-container h4{
    margin: 15px 0px;
    font-size: 13px;
}
.login-business{
    font-size: 13px;
}
.login-section-text{
    width: 320px;
    font-size: 13px;
    color: #737373;
    margin: 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.login-section-text hr{
    width: 120px;
}
.login-signup-btn{
    width: 320px;
    height: 36px;
    font-size: 13px;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #c3c3c3;
}
.login-signup-btn:hover{
    background-color: #f1f1f1;
}

footer{
    width: 100%;
    height: auto;
    max-height: 200px;
    margin-top: 26px;
    padding: 20px 0px;
    position: static;
    background: linear-gradient(to bottom, #f4f4f4, #ffffff);
    border-top: 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;
}