* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #0b0c0c;
    font-family: "Manrope";
}

img {
    max-width: 100%;
    height: auto;
}

.reg-row {
    border-radius: 26px;
    max-width: 1650px;
    height: 100vh;
    align-items: center;
    margin: auto;
}

.left-side {
    background-color: #E0FCFD;
    border-radius: 26px 0 0 26px;
    padding: 150px 30px 0;
    height: 780px;
    max-height: 100%;
}

.img-text {
    font-size: 25px;
    font-weight: bold;
    line-height: 35px;
}

.img-text span {
    font-size: 30px;
}

.right-side {
    padding: 70px;
    background-color: #F5F5F5;
    height: 780px;
    max-height: 100%;
    border-radius: 0 26px 26px 0;
}

.section-sub-heading {
    font-size: 36px;
    font-weight: bold;
    line-height: 30px;
}

.sub-text {
    font-size: 18px;
}

.form-control {
    font-size: 20px;
    font-weight: 500;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #D9D9D9;
}

.form-control::placeholder {
    color: #D9D9D9;
    font-weight: 500;
    font-size: 20px;
}

.add-image-btn,
.remove-image-btn {
    font-weight: 500;
    cursor: pointer;
}

.remove-image-btn {
    display: none;
}

.add-image-btn img,
.remove-image-btn img {
    margin-right: 8px;
}

.submit-btn {
    background-color: #27BDBE;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: 500;
}

.loader {
    width: 50px;
    --b: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 1px;
    background: conic-gradient(#0000 10%, #27BDBE) content-box;
    -webkit-mask:
        repeating-conic-gradient(#0000 0deg, #000 1deg 20deg, #0000 21deg 36deg),
        radial-gradient(farthest-side, #0000 calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    animation: l4 1s infinite steps(10);
}

@keyframes l4 {
    to {
        transform: rotate(1turn)
    }
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0009;
    z-index: 101;
}