/* signup page css */

:root {
    --sec-p: 16px;
}

@media screen and (min-width: 480px) {
    :root {
        --sec-p: 16px;
    }
}

#signup-page {
    margin-top: 12px;
    margin-bottom: 12px;
    background: #fff;
    text-align: center;

    section {
        width: 100%;
    }

    .containe-fluid {
        position: relative;
        max-width: 392px;
        width: 100%;
        margin: 0 auto;
        padding: 12px var(--sec-p);
        display: grid;
        justify-items: center;
    }

    .flex {
        display: flex;
    }

    .grid {
        display: grid;
    }

    .gap-2 {
        gap: 8px;
    }

    .gap-3 {
        gap: 12px;
    }

    .gap-18 {
        gap: 18px;
    }

    .gap-6 {
        gap: 24px;
    }

    h1 {
        font-size: 24px;
        font-weight: 500;
        line-height: 28px;
    }

    p.h1_p {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

    section {
        padding: 32px 0;
        display: grid;
        gap: 32px;
    }

    .signup-section > form {
        padding: unset;
        max-width: 392px;
        padding: 0 var(--sec-p);
    }
    .error-message{
        font-size: 0.75rem;
        color: #f87171;
        width: 100%;
        text-align: left;
    }
    button.google {
        width: 100%;
        padding: 8px 24px 8px 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 4px;
        border: 1px;
        background: #f7f7fc;
        border: 1px solid #e2e2e2;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: #272d3c;
        height: 40px;
        cursor: pointer;
        img {
            height: 20px;
        }
    }
    button.google:hover {
        background: #eeeff2;
    }
    p.or {
        position: relative;
        width: 100%;
        line-height: 0px;
        border-bottom: 1px solid #e2e2e2;
        margin: 9px;
        display: flex;
        justify-content: center;
    }
    p.or::before {
        content: "or";
        font-size: 14px;
        font-weight: 400;
        line-height: 16px;
        display: inline-flex;
        justify-content: center;
        height: 18px;
        width: 42px;
        position: absolute;
        bottom: -12px;
        color: #9b9faa;
        background: #fff;
        z-index: 1;
    }
    label {
        display: grid;
        gap: 8px;
        text-align: left;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;

        input.text-value {
            font-size: 16px;
            padding: 10px 12px 10px 12px;
            border-radius: 4px;
            border: 1px solid #e2e2e2;
            height: 40px;
        }
    }

    a {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        margin-left: auto;
        color: #007aff;
    }
    a:hover {
        color: #0057ef;
    }
    .submit-btn {
        width: 100%;
        padding: 8px 24px 8px 24px;
        border-radius: 4px;
        color: #fff;
        background: #007aff;
        border: unset;
        outline: unset;
        height: 40px;
        cursor: pointer;
    }
    .submit-btn:hover {
        background: #0057ef;
    }
    .register {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

    .read {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }
}
