.theme-gradient {
    background: rgb(252, 103, 103);
    background: linear-gradient(90deg,
            rgba(252, 103, 103, 1) 0%,
            rgba(246, 69, 115, 1) 35%,
            rgba(241, 33, 127, 1) 100%);
}

.social-box {
    background-color: #f5f6f7;
    display: flex;
    align-items: center;
    padding: 8px 30px;
    cursor: pointer;

    .socail-bar {
        width: 2px;
        color: aliceblue;
        border: 1px solid rgba(29, 29, 29, 0.2);
        height: 40px;
    }

    .socail-text {
        width: 100%;
    }
}

.or-text {
    position: relative;

    p {
        &::before {
            content: "";
            width: 48%;
            background-color: rgba(29, 29, 29, 0.2);
            height: 0.5px;
            border: 0 solid;
            position: absolute;
            left: 0;
            top: 11px;
        }

        &::after {
            content: "";
            width: 48%;
            background-color: rgba(29, 29, 29, 0.2);
            height: 0.5px;
            border: 0 solid;
            position: absolute;
            right: 0;
            top: 11px;
        }
    }
}

.upload-box {
    position: relative;
    z-index: 0;

    .add-icon {
        position: absolute;
        left: 50%;
        top: 50%;
        width: auto !important;
        height: auto !important;
        z-index: 1;
    }
}

.ant-upload-select {
    overflow: hidden;
    width: 102px !important;
    height: 102px !important;
    overflow: hidden;

    img {
        height: 100%;
        object-fit: contain;
    }

}

.ant-upload-wrapper .ant-upload-select {
    display: block;
}

.ant-upload .upload-box>div>.profile-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
