@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap');
body {
    padding: 0;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    background: hsl(0, 100%, 98%);
}
.mobile-image img {
    width: 100%;
}
header {
    padding: 26px 20px 24px 35px;
}
img.desktop-image{
    display: none;
}
.desktop-logo img {
    display: none;
}
main.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 11%;
}
span {
    font-weight: 300;
    color: hsl(0, 36%, 70%)
}
h1 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 13px;
}
p {
    font-weight: 300;
    line-height: 24px;
    color: hsl(0, 36%, 70%);
    font-weight: 400;
    margin-bottom: 41px;
}
input[type="text"] {
    width: 86%;
    height: 55px;
    border: 1px solid hsl(0, 36%, 70%);
    border-radius: 30px;
    outline: none;
}
input[type="text"]::placeholder{
    padding-left: 20px;
    font-family: 'Josefin Sans', sans-serif;
    color: hsl(0, 36%, 70%);
}
input[type="text"] :focus {
    padding-left: 12px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
}
form {
    position: relative;
}
button {
    border: none;
    width: 25%;
    height: 64px;
    position: absolute;
    right: 22px;
    border-radius: 33px;
    font-size: 20px;
    background: linear-gradient(135deg, hsl(0, 100%, 98%),hsl(0, 74%, 74%));
    cursor: pointer;
    top: 0;
}
button:active {
    box-shadow: 4px 10px 25px hsl(10deg 96% 78%);
    color: #fff;
}
.form-wrapper {
    padding: 0;
}
small {
    display: none;
    margin: 14px 12px 0px 24px;
    color: hsl(0, 93%, 68%);
}
@media only screen and (min-width: 1000px) {
 
    header {
        padding: 0;
    }
    .mob-logo {
        display: none;
    }
    .mobile-image {
        display: none;
    }
    img.desktop-image{
        display: block;
    }
    .desktop-logo img {
        display: block;
    }
    main.wrapper{
        flex-direction: row-reverse;
        text-align: left;
        padding: 0;
    }
    .form-wrapper {
        padding: 10px 164px 31px 151px;
    }
    .desktop-logo {
        position: relative;
        bottom: 84px;
    }

}
