* {
    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;
    background: linear-gradient(to left, #003599 25%, #0036997d);
    color: #fff;
}

/*Main Styles*/

.uc__wrapper {
    height: 100vh;
    display: flex;
    justify-content: space-between;
}

.uc__details {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    padding: 0 4rem;
    align-items: flex-start;
    justify-content: center;
}

.uc__art {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uc__art img {
    width: 80%;
    animation: transform 1s infinite alternate;
}

@keyframes transform {
    from {
        transform: translatex(30px);
    }

    to {
        transform: translatex(0);
    }
}

.title {
    display: inline-block;
    font-size: 60px;
    position: relative;
    margin-bottom: 1rem;
}

.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #008724ba;
    width: 240px;
    border-radius: 70px;
}

.intro {
    font-size: 15px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.uc__description {
    margin-bottom: 1.5rem;
    line-height: 1.80;
    color: #ccc;
}

.uc__subscribe {
    background-color: #008724ba;
    padding: 1.5rem;
    width: 85%;
    border-radius: 20px;
    box-shadow: 0 25px 50px 12px rgba(0, 0, 0, .25);
}

.uc__subscribe h3 {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.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-color: #ecf0f1;
    border-radius: 25px;
}

.uc__form .submit {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #003699;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 0 25px 25px 0;
    transition: .3s ease-in-out;
}

.uc__form .submit:hover {
    background-color: #3700ff;
    transition: .3s ease-in-out;
    border-radius: 25px;
}

/* responsive */

@media screen and (max-width: 970px) {
    .title {
        font-size: 40px;
    }

    .uc__subscribe h3 {
        font-size: 12px;
    }

    .uc__form .submit {
        font-size: 10px;
    }

    .uc__form .email {
        font-size: 10px;
    }
}

@media screen and (max-width: 850px) {
    .uc__art {
        flex-basis: 0%;
    }

    .uc__details {
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
        padding: 0 4rem;
        align-items: flex-start;
        justify-content: center;
    }
}

@media screen and (max-width: 450px) {
    .uc__subscribe {
        background-color: #008724ba;
        padding: 1.5rem;
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 25px 50px 12px rgba(0, 0, 0, .25);
    }

    .uc__details {
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
        padding: 0 1rem;
        align-items: flex-start;
        justify-content: center;
    }
}

@media screen and (max-width: 300px) {
    .title {
        font-size: 30px;
    }

    .intro {
        font-size: 12px;
    }

    .uc__description {
        font-size: 12px;
    }
}