@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;
}

body {
    
    background-color: #ffffff;
    text-align: center;
    font-family: Outfit;
    min-height: 100vh;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-top: 20px;
}

.logo {
    width: 100px;
}

.logo-in {
    font-size: 16px;
    margin-top: -10px; 
}

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


}
.signin-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0px 0px 8px;
    padding: 0px 0px 4px;
}

.input-label {
    font-size: 15px;
    margin: 0px 0px 4px;
    color: #0f1111;
    font-weight: 600;
}

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

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

.signin-container button {
    width: 100%;
    height: 32px;
    background-color: #ffd814;
    border: 1px solid #fcd200;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 400;
    margin: 15px 0;
    cursor: pointer;
}

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

.signin-condition {
    font-size: 13px;
    margin-bottom: 16px;
}
.signin-condition a {
    color: #2162A1;
    
}

.signin-condition a:hover {
    text-decoration: underline;
    color: #0f1111;
}

.divide {
    margin: 0px 0px 14px;
    border: none;
    border-top: 1px solid #d2d2d2;
}
.buy {
    font-size: 15px;
    margin: 0px 0px 4px;
    color: #0f1111;
    font-weight: 600;
}
.business {
    font-size: 15px;
    text-decoration: none;
    color: #2162A1;
}
.business:hover {
    text-decoration: underline;
    color: #0f1111;
}

.foo-div {
    margin: 48px 0px 22px;
    border: none;
    border-top: 1px solid #d2d2d2;
}

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

.footer-links a {
    text-decoration: none;
    color: #2162A1;
    font-size: 12px;
}

.copyright {
    font-size: 13px;
    color: #565959;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #0f1111;
}