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

html,
body {
    font-family: 'Josefin Sans', sans-serif;
    text-transform: capitalize;
    width: 100%;
    height: 100%;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
    background: url(images/bg-pattern-desktop.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.left {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: left;
    flex: 2;
    gap: 10px;
}

.left img {
    position: relative;
    bottom: 150px;
    right: 50px;
}

.right {
    flex: 1.5;
}

.right img {
    width: 100%;
    height: 100%;
}

h2 {
    color: hsl(0, 80%, 86%);
    font-size: 70px;
}

h1 {
    font-size: 70px;
}

input {
    border-radius: 20px;
    padding: 5px;
    border: 1px solid hsl(0, 63%, 79%);
}

input::placeholder {
    color: hsl(0, 80%, 86%);
    opacity: 1;
}

button {
    background-color: hsl(0, 93%, 68%);
    border: none;
    padding: 7px 20px;
    position: relative;
    right: 20px;
    border-radius: 20px;
    box-shadow: 0 0 4px black;
    color: aliceblue;

}

button:active {
    background-color: hsl(0, 60%, 60%);
    transform: scale(0.95);
}

input:focus {
    border: 1px solid hsl(0, 26%, 47%);
    outline: none;
}

.btn {
    margin-top: 20px;
}

.btn:hover {
    transform: scale(1.2);
}