@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap');

* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
}
body {
    position: relative;
    height: 100vh;
    display: flex;
    background-image: linear-gradient(135deg, hsl(0, 0%, 100%), hsl(0, 100%, 98%));
}
.left-content {
    background-image: url(../images/bg-pattern-desktop.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 58vw;
}
.left-content header {
    height: 20vh;
    width: 58vw;
    display: flex;
    align-items: center;
    margin-left: 14vw;
}
.left-content picture {
    display: none;
}
.left-content main {
    height: 80vh;
    width: 58vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.left-content main .main-text {

}
.left-content main .main-text h1 {
    font-size: 3.5em;
    letter-spacing: 7px;
    color: hsl(0, 6%, 24%);
}
.left-content main .main-text h1 span {
    color: #ce9797;
    font-weight: 300;
}   
.left-content main .main-text p {
    max-width: 430px;
    color: #ce9797;
    margin: 45px 0;
    line-height: 25px;
}
.left-content main .input {
    max-width: 450px;
    height: 50px;
    border-radius: 3em;
    border: solid 1px #ce9797;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
}
.left-content main .input .error-img  {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    display: none;
}
.left-content main .input #email {
    background-color: transparent!important;
    outline: none;
    color: #ce9797;
    padding: 20px;
    margin-left: 10px;
    width: 100%;
}

.left-content main .input #email::-webkit-input-placeholder { 
    color: #ce9797;
    background-color: transparent;
}

.left-content main .input .submit {
    width: 150px;
    height: 50px;
    margin: -1px;
    color: white;
    font-size: 2em;
    font-weight: 300;
    border-radius: 3em;
    background-image: linear-gradient(135deg, #f8bfbf, #ee8c8c);
    transition: .1s;
}
.left-content main .input .submit:hover {
    transform: scale(1.1);
    background-color: #f8bfbf;
}

main .main-content .error-txt {
    color: #f96262;
    font-size: 14px;
    margin-left: 30px;
    display: none;
}
.right-content {
    width: 42vw;
    max-height: 100vh;
}
.right-content img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

aside {
    position: fixed;
    bottom: 2px;
    width: 100%;
    
}
aside p {
    color: hsl(0, 6%, 24%);
    text-align: center;
}
aside p a {
    color: hsl(0, 93%, 68%);
}
