@import url('https://fonts.google.com/specimen/Josefin+Sans')

* {
    box-sizing: border-box;
}

body {
    background-image: url('/base-apparel-coming-soon-master/images/bg-pattern-desktop.svg');
    background-size: cover;
    font-family: 'Josefin Sans', 'sans-serif';
    margin: 0;
}

.container {
    display: flex;
    min-height: 100vh;
}

.left {
    padding: 0 40px;
    width: 60%;
}

.right {
    width: 40%;
}

.bg-image {
    background-image: url('images/hero-desktop.jpg');
    background-size: cover;
    background-position: center center;
}

.logo {
    margin: 60px 0;
    width: 200px;
}

h1 {
    color: hsl(0, 6%, 24%);
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 10px;
    text-transform: uppercase;
}

h1 span {
    color: hsl(0, 36%, 70%);
    font-weight: 200;
}

p {
    color: hsl(0, 36%, 70%);
    line-height: 26px;
}

form{
    position: relative;
}

form.error {
}

input {
    background-color: transparent;
    border: 1px solid hsl(0, 36%, 70%);
    border-radius: 50px;
    padding: 15px;
    font-size: 16px;
    width: 100%;
    height: 55px;
}

form.error input {
    border: 2px solid hsl(0, 93%, 68%);
}

button {
    background-image: linear-gradient(135deg, hsl(0, 80%, 86%), hsl(0, 74%, 74%));
    box-shadow: 2px 5px 10px hsla(0, 36%, 70%, 0.5);
    border: none;
    border-radius: 50px;
    padding: 15px;
    width: 100px;
    height: 55px;
    position: absolute;
    top: 0;
    right: 0;
    transition: box-shadow 1s ease;
}

button:hover {
    background-image: linear-gradient(135deg, hsl(0, 80%, 90%), hsl(0, 80%, 90%));
    box-shadow: 2px 10px 10px hsla(0, 36%, 70%, 0.5);
}

.error-icon {
    display: none;
    position: absolute;
    top: 15px;
    right: 110px;
}

form.error .error-icon {
    display: block;
}

small {
    color: hsl(0, 93%, 68%);
    display: none;
    margin-top: 15px;
    margin-left: 30px;
}

form.error small {
    display: block;
}