.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: hsl(0, 100%, 74%) url('bg-intro-desktop.png');
    height: 100vh;
}

.block2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    flex-basis: 0;
    padding: 5rem 0;
    height: 50vh;
}

.block1 {
    flex-grow: 1;
    flex-basis: 0;
    padding: 5rem;
    font-size: 2rem;
    height: 50vh;
}

.form {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    border: none;
    box-shadow: 0 5px 3px 0;
    width: 50vh;
    height: 40vh;
}

.form input {
    border: 1px solid rgb(129, 126, 126);
    border-radius: 5px;
    margin: 5px;
    padding: 10px;
}

.container .block:nth-child(1) {
    font-family: 'Poppins', sans-serif;
}

.block1 h1 {
    color: white;
}

.block1 p {
    color: white;
}

.btn1 {
    background: hsl(248, 32%, 49%);
    text-align: center;
    border: none;
    border-radius: 5px;
    padding: 0.2rem 0.5rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 5px 3px 0;
    margin: 1rem;
    padding: 0.5rem;
    width: 59%;
}

.btn1:hover {
    background-color: blueviolet;
    cursor: grab;
}

.btn2 {
    background: hsl(154, 59%, 51%);
    text-align: center;
    border: none;
    border-radius: 5px;
    padding: 10px 50px;
    font-family: 'Poppins', sans-serif;
    box-shadow: inset 0 0 2px;
}

.btn2:hover {
    background-color: green;
    cursor: grab;
}


.btn2 span {
    color: white;
}

.btn1 span {
    color: white;
}

