* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-size: 1rem;
    line-height: 1.65;
    font-family: 'Poppins', sans-serif;
    color: #fff;

}

.uc__wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: row;

}

.uc__details {
    flex-basis: 50%;
    background: #6c5ce7;
    display: flex;
    flex-direction: column;
    padding: 0 4rem;
    align-content: flex-start;
    justify-content: center;

}

.uc__image {
    flex-basis: 50%;
    background: #dfe6e9;
    display: flex;
    align-content: center;
    justify-content: center;
    width: 70%;
}

.uc__image img {
    width: 100%;
}

.title {
    display: inline-block;
    font-size: 40px;
    position: relative;
    margin-bottom: 1rem;

}

.intro {
    font-size: 15px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1reml
}

.uc__description {
    margin-bottom: 2rem;
    line-height: 1.77;
    color: #ccc;
}

.uc__subscribe {
    background-color: #a29bfe;
    padding: 1.5rem;
    width: 85%;
    border-radius: 3px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
}

.uc__form {
    position: relative;
}

.uc__form input {
    font-family: inherit;
    outline: none;
    font-size: 90%;
    padding: 10px 1rem;
    border: none;
    display: block;
    border-radius: 2px;
}

.uc__form .email {
    width: 100%;
    background: #ecf0f1;
}

.uc__form .submit {
    position: absolute;
    top: 0;
    right: 0;
    background: #7a3a95;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .5s;
}

.uc__form .submit:hover {
    background-color: #8e44ad;
}

@media only screen and (max-width: 890px) {
    .uc__wrapper {
        flex-direction: column;
    }

    .uc__image {
        display: none;
    }

    body {
        background: #6c5ce7;
    }

    .uc__subscribe {
        width: 100%;
    }

    .uc__form .submit {
        position: relative;
        margin-top: 1rem;
        background: #7a3a95;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all .5s;
    }
    .uc__details{
        padding: 0 1rem;
    }
}
