:root {
    /* Colors */
    /* Primary */
    --pink-400: hsl(0, 36%, 70%);
    --red-500: hsl(0, 93%, 68%);
    /* Neutral */
    --gray-900: hsl(0, 6%, 24%);
    /* Gradients */
    --first-gradient-start: hsl(0, 0%, 100%);
    --first-gradient-stop: hsl(0, 100%, 98%);
    --second-gradient-start: hsl(0, 80%, 86%);
    --second-gradient-stop: hsl(0, 74%, 74%);

    /* Typography */
    --font-family: "Josefin Sans";
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-600: 600;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    height: 100vh;
    overflow: hidden;
}

@media (max-width: 767px) {
    body {
        height: 100%;
    }
}

.base-apparel {
    display: flex;
    height: 100%;
}

@media (max-width: 767px) {
    .base-apparel {
        flex-direction: column-reverse;
    }
}

.base-apparel .content {
    background-image: url('images/bg-pattern-desktop.svg');
    background-size: cover;
    padding: 100px;
}

@media (max-width: 767px) {
    .base-apparel .content {
        padding: 50px 15px;
    }
}

.base-apparel .content .logo {
    margin-bottom: 120px;
}

.base-apparel .content .logo.mobile {
    position: absolute;
    top: 0;
    background-color: white;
    width: 100%;
    left: 0;
    padding: 30px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .base-apparel .content .head {
        text-align: center;
    }
}

.base-apparel .content .head h1 {
    text-transform: uppercase;
    letter-spacing: 10px;
    font-size: 70px;
    font-weight: var(--font-weight-400);
    color: var(--gray-900);
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .base-apparel .content .head h1 {
        font-size: 40px;
        font-weight: var(--font-weight-600);
    }
}

.base-apparel .content .head h1 span {
    color: var(--pink-400);
    font-weight: var(--font-weight-300);
    font-size: 70px;
    display: block;
}

@media (max-width: 767px) {
    .base-apparel .content .head h1 span {
        font-size: 40px;
    }
}

.base-apparel .content .head p {
    color: var(--pink-400);
    width: 450px;
    line-height: 1.5;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .base-apparel .content .head p {
        width: 100%;
    }
}

.base-apparel .content .contact {
    display: flex;
    align-items: center;
    position: relative;
}

.base-apparel .content .contact .email {
    width: 100%;
    position: relative;
}

.base-apparel .content .contact .email input {
    outline: none;
    border: 1px solid var(--pink-400);
    padding: 18px;
    width: 100%;
    border-radius: 50px;
    position: relative;
    font-family: var(--font-family);
}

.base-apparel .content .contact .email input.error {
    border: 2px solid red;
}

.base-apparel .content .contact .email input::placeholder {
    color: var(--pink-400);
}

.base-apparel .content .contact .email img {
    display: none;
    position: absolute;
    right: 110px;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.base-apparel .content .contact .email p {
    display: none;
    position: absolute;
    bottom: -25px;
    left: 20px;
    color: var(--red-500);
    font-weight: var(--font-weight-600);
}

.base-apparel .content .contact .arrow {
    background-image: linear-gradient(to right, var(--second-gradient-start), var(--second-gradient-stop));
    width: 100px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 50px;
    cursor: pointer;
}

.base-apparel .content .contact .arrow:hover {
    background-image: linear-gradient(to right, hsl(358.64deg 78.57% 89.02%));
    box-shadow: 0px 0px 20px 0px var(--second-gradient-start);
}

.base-apparel .content .contact .arrow svg {
    width: 20px;
    height: 20px;
}

.base-apparel .content .contact .arrow svg path {}

.base-apparel .image {
    flex-basis: 50%;
}

.base-apparel .image img {
    height: 100%;
    width: 100%;
}

.attribution {
    font-size: 11px;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.attribution a {
    color: hsl(228, 45%, 44%);
}