* {
    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 right, #195517c2 50%, #e9dbef 50%);
    color: rgb(255, 255, 255);
}

/*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;
    background-color:rgb(255, 255, 255);
}

.uc__art img {
	
    width: 70%;
}

.title {
    display: inline-block;
    font-size: 40px;
    position: relative;
    margin-bottom: 1rem;
}

.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #fff;
    width: 140px;
}

.intro {
    font-size: 15px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.uc__description {
    margin-bottom: 2rem;
    line-height: 1.77;
    color: #ccc;
}

.uc__subscribe {
    background-color: #779175;
    padding: 1.5rem;
    width: 85%;
    border-radius: 3px;
    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;
}

.uc__form .submit {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #5ecc5e;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color .22s ease;
}

.uc__form .submit:hover {
    background-color: #30a844;
}
@media screen and (max-width:450px) {
    

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-height: 100%;
}

body {
    font-size: 1rem;
    line-height: 1.65;
    font-family: 'Poppins', sans-serif;
   
    color: #fff;
}

/*Main Styles*/

.uc__wrapper {
    height: 100vh;
    min-height: 10vh;
    display: flex;
    flex-basis: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.uc__details {
  

    width: 5vw;
    flex-direction: column;
    
    padding: 0 4rem;
    align-items: flex-start;
    justify-content: center;
    background-color: #a0afa01a;
}

.uc__art {
    width: 50vw;

    display: flex;

    justify-content: center;
    background-color:white;
}

.uc__art img {

    min-width: 100%;
    
}

.title {
    display:inline-flex;
    font-size: 2.5rem;
    margin-left: -3.8rem;
    position: relative;
	/*align-items:center;*/
    margin-bottom: 1.5rem;
    justify-content: center;
}

.title::after {
    content: '';
    position: absolute;
    bottom: 0;
	
    left: 0;
    height: 3px;
    background-color: #fff;
    width: 3rem;
}

.intro {
    margin-left: -1.90rem;
    font-size: 1rem;
    writing-mode: horizontal-tb;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.uc__description {
    margin-left: -1.90rem;
    margin-bottom: 1.5rem;
    line-height: 1.77;
    font-size: 0.8rem;
    color: #ccc;
}

.uc__subscribe {
    position: inherit;
    background-color: #779175;
    margin-left: -2rem;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    min-width: 10rem;
    min-height: 20%;
    border-radius: 3px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

.uc__subscribe h3 {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 0.4rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.uc__form {
    position: relative;
}

.uc__form input {
    font-family: inherit;
    outline: none;
    min-width: 5rem;/**/
    font-size: 0.3rem;
    padding: 10px 1rem;
    border: none;
    display: block;
    border-radius: 2px;
}

.uc__form .email {
    min-width: 5rem; 
    margin-left: -1rem;
    padding: -1.5rem;  
    background-color: #ecf0f1;
    
}
input::placeholder{
    font-size: 0.3rem;
    
}
.uc__form .submit {
    
    margin-left: -3rem;
    top: 0;
    right: 0;
    /*left: 3rem;*/
    background-color: #5ecc5e;
    width: 3.69rem;
    min-width: 3rem;
    color: #fff;
    text-transform: uppercase;
    
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color .22s ease;
}

.uc__form .submit:hover {
    background-color: #30a844;
}
}