*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
body{
    margin-top: 5px;
    background: #fff;
    text-align: center;
    font-family: Outfit;
    min-height: 100vh;
}
.logo{
    margin-top: 20x;
}
.signin-container{
    max-width: 350px;
    border: 1px solid #d2d2d2;
    margin: auto;
    margin-top: 20px;
    padding: 20px 26px;
    border-radius: 8px;
    text-align: left;
}
.signin-title{
    font-size: 28px;
    font-weight: 400;
}
.input-label{
    font-size: 18px;
    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: 15px;   
}
.signin-container p span{
    color: #0066c0;
}
.sigin-help{
    font-size: 15px;
    margin: 20px 0;
}

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

.signin-container h4{
    margin: 15px 0;
    font-size: 14px;
}

.signin-business{
    font-size: 14px;

}
.signin-bottom{
    max-width: 350px;
    font-size: 14px;
    color: #737373;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.signin-bottom hr{
    border: none;
    height: 1px;
    background: #d4d4d4;
    width: 110px;
}
.signin-signup-btn{
    width: 350px;
    height: 30px;
    font-size: 14px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #c3c3c3;
}
.signin-signup-btn:hover{
    background: #f1f1f1;
}
footer{
    width: 100%;
    text-align: center;
    height: auto;
    max-height: 60px;
    margin-top: 10px;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    background: linear-gradient(to bottom, #f4f4f4, #fff);
    border: 2px solid #ededed;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-link {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-link a {
    text-decoration: none;
    color: #0066c0;
    font-size: 14px;
}

.footer-link a:hover {
    text-decoration: underline;
}

/* Ensure footer text is centered */
.footer-copy-right {
    font-size: 12px;
    color: #737373;
    text-align: center;
    width: 100%;
}