.BorderCancel {
    border: none !important;
}

.sign-error-message {
    color: red;
    font-size: 0.675rem;
    height: 1.5rem;
}

.languageContainer {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
}

.flag-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


@media (min-width: 400px) {
    .languageContainer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 16px;

    }

    .languageSingle {
        justify-content: start !important;
    }
}

/* 4 parts after 576px */
@media (min-width: 576px) {
    .languageContainer {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 16px;
    }
}

/* 6 parts after 768px */
@media (min-width: 992px) {
    .languageContainer {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 16px;
    }
}

.languageSingle {
    cursor: pointer;
    border-radius: 4px;
    padding: 0.5rem;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: center;
}

.languageSingle:hover {
    background-color: rgb(245, 245, 245);
    ;
}

.languageSingle .title {
    font-weight: 400;
    font-size: 1rem;
}

.languageSingle .flag-icon {
    font-size: 1.5rem;
}

/* if languageSingle and selected together */
/* .languageSingle.selected {
    border: 2px solid #28a745;

} */

/* if languageSingle and selected together change childeren's child title class */

.languageSingle.selected .title {
    color: #f14d62 !important;
    font-weight: 600;
}