@use '../../utils' as *;

/*----------------------------------------*/
/*  4.7 Contact css
/*----------------------------------------*/

.bd-contact-form-wrapper {
    margin-right: 60px;
    @media #{$md,$sm,$xs} {
        margin-right: 0;
    }
}
.bd-contact-form-thumb {
    img {
        border-radius: 8px;
        width: 100%;
        height: 100%;
    }
}
.bd-contact-address-box {
    background: var(--bd-white);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s;
    &:hover {
        transform: translateY(-15px);
        background-color: var(--bd-primary);
        .icon {
            background-color: var(--bd-white);
        }
        .title {
            color: var(--bd-white);
        }
        .content p {
            color: var(--bd-white);
        }
    }
    .icon {
        background-color: var(--primary-rgb-1);
        width: 50px;
        height: 50px;
        margin: 0 auto;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s;

        i {
            color: var(--bd-primary);
            font-size: 24px;
            transition: all 0.3s;
        }
    }

    .title {
        margin-top: 25px;
        margin-bottom: 15px;
        transition: all 0.3s;
    }

    .content p {
        margin-bottom: 0;
        transition: all 0.3s;
    }
}
.bd-contact-map {
    margin-top: 80px;
    iframe {
        width: 100%;
        border-radius: 8px;
    }
}
.bd-authentication {
    &-form {
        &-wrapper {
            background-color: var(--bd-white);
            box-shadow: 0px 4px 80px rgba(0, 0, 0, 0.12);
            border-radius: 8px;
            padding: 30px 30px;
            text-align: start;
            .title {
                font-size: 32px;
            }
            .subtitle {
                color: var(--bd-body-text);
                margin-bottom: 20px;
            }
        }
        &-logo {
            text-align: center;
            margin-bottom: 20px;
        }
    }
    &-cover {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background: rgba($color: $theme-black, $alpha: .6);
        width: 100%;
        height: 100%;
        inset-inline-start: 0;
        inset-inline-end: 0;
        inset-block-start: 0;
        inset-block-end: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 5;
        &::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            inset-inline-start: 0;
            inset-inline-end: 0;
            inset-block-start: 0;
            inset-block-end: 0;
            background: rgba($color: $black, $alpha: .2);
            z-index: -1;
        }
        &-content {
            width: 70%;
            height: 20rem;
            position: relative;
            .bd-section-title {
                color: var(--bd-white);
                font-weight: var(--bd-fw-sbold);
            }
            .bd-section-paragraph {
                color: var(--bd-white);
            }
        }
    }
}
.sign-link {
    color: var(--bd-taxonomy-color);
    font-size: 16px;
}

.bd-divider {
    &-wrapper {
        display: flex;
        position: relative;
        align-items: center;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    &-line {
        position: relative;
        background-image: linear-gradient(90deg, #46494D, rgba(33, 38, 45, 0));
        width: 100%;
        height: 1px;
        left: 0%;
        top: 0%;
        right: 0%;
        bottom: auto;
        &.left-line {
            background-image: linear-gradient(-90deg, #46494D, rgba(33, 38, 45, 0));
        }
    }
    &-title {
        position: relative;
        padding: 0 15px;
        width: 420px;
        text-align: center;
    }
}

.bd-alter-sign {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.bd-sign-up-label {
    a {
        color: var(--bd-primary);
    }
}