:root {
    --main-blue-dark: #3a79d0;
    --main-blue-light: #4a9aff;
    --box-shadow-color: rgba(0, 0, 0, 0.2);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif;
    background: #fff;
    display: block;
}

.signup-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.left-side {
    flex: 1;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-side {
    flex: 0 0 450px;
    width: 450px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    z-index: 2;
    box-shadow: -5px 0 15px var(--box-shadow-color);
}

@media (max-width: 850px) {
    .signup-container {
        flex-direction: column;
        height: auto;
    }

    .left-side {
        display: none;
    }

    .right-side {
        flex: 1;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 40px 20px;
        height: auto;
        min-height: 100vh;
    }
}

.ui.input input {
    color: rgba(0, 0, 0, .87) !important;
    background-color: #fff !important;
    border-bottom: 1px solid #dadfe3 !important;
}

.tel-input-group .iti {
    width: 100% !important;
    display: block !important;
}

.tel-input-group .iti input {
    width: 100% !important;
    padding-left: 110px !important;
}

.tel-input-group .iti input#phoneNo {
    padding-left: 120px !important;
    background-color: transparent !important;
}

.tel-input-group>i.phone.icon {
    z-index: 100 !important;
}

.iti__flag-container {
    padding-left: 35px !important;
}

.iti__selected-flag {
    background: none !important;
}
.ui.blue.button {
    background-color: #2185d0;
}