main {
    padding-top: 80px
}

@media (max-width: 768px) {
    main {
        padding: 0px 20px;
    }
}

.login-container {
    display: flex;
    width: 500px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 8px;
    background: #FFF;
    margin: 0 auto 100px auto;
}

@media (max-width: 768px) {
    .login-container {
        width: 100%;
        padding: 28px 24px;
        margin-bottom: 50px;
    }
}

.login-title {
    color: #0B0427;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .login-title {
        padding-right: 0px;
        font-size: 26px;
        font-style: normal;
        font-weight: 600;
        margin-bottom: 12px;
    }
}


.tab-panel-title {
    color: #0B0427;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 12px;
}


@media (max-width: 768px) {
    .tab-panel-title {
        font-size: 22px;
        font-weight: 600;
        line-height: 20px;
        margin-bottom: 12px;
    }

    h2.tab-panel-title {

        padding: 0;
    }
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    width: 100%;
}

@media (max-width: 768px) {
    .form-container {
        gap: 12px;
    }
}

.form-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

.inputs-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;

    gap: 0 40px;
}

.inputs-container .input-container {
    max-width: 420px;
    width: 100%;
}

.form-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.form-signup-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .form-signup-container {
        gap: 0px;
    }
}

.form-signup-container h3 {
    color: #46494F;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 21.6px */
}

.form-signup-container a {
    color: #2020B3;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-decoration: none;
}

.submit-button {
    display: flex;
    width: 100%;
    height: 50px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    border: 2px solid var(--ffffff, #FFF);
    background: var(--LEADBLUE, #2020B3);
    box-shadow: 0 2.286px 7.429px 0 rgba(0, 0, 0, 0.16);

    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 34.286px;
    /* 190.476% */
}

@media (max-width: 768px) {
    .submit-button {
        width: 100%;
    }
}
