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

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

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

.logo {
    margin-top: 20px;
}

.signin-container {
    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-lable {
        margin-top: 20px;
    }

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

    input:focus {
        outline: 3px solid #c2f2ff;
    }

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

    button:hover {
        background-color: #ebc712;
    }

    p {
        span {
            color: #0066c0;
        }
    }

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

        span {
            color: #0066c0;
        }
    }

    hr {
        border: none;
        height: 1px;
        background-color: #d4d4d4;
    }

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

    .signin-business {
        font-size: 13px;
    }
}
.signin-bottom{
    max-width: 350px;
    font-size: 13px;
    color: #737373;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    hr{
        width: 110px;
        border: none;
        height: 1px;
        background-color: #d4d4d4;
    }
}
.signin-signup-btn{
    width: 350px;
    height: 30px;
    font-size: 13px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #c3c3c3;
}
.signin-signup-btn:hover{
    background-color: #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-radius: 2px solid #ededed;
    font-size: 12px;
    .footer-links{
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 20px;
        a{
            text-decoration: none;
            color: #0066c0;
        }
    }
}

/* --------- media query ----------*/
@media only screen and (max-width: 900px){
    nav{
        flex-wrap: wrap;
    }
    .nav-search{
        order: 7;
        margin: 15px 0 5px;
        min-width: 300px;
    }
}