@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input {
    font-family: 'Raleway', sans-serif;
}

button {
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
}

.container {
    display: flex;
}

body {
    min-height: 100vh;
    display: flex;
    font-family: 'Raleway', sans-serif;
}

main {
    display: flex;
}

.left {
    width: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10rem;
}

.logo {
    width: 100px;
}

.google {
    margin-top: 4rem;
    padding: .5rem 2rem;
    background-color: transparent;
    border: 1px solid #296eb3;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    width: 100%;
    border-radius: 5px;
}

.google img {
    width: 25px;
}

.container {
    margin-top: 2rem;
    align-items: center;
}

.line {
    content: '';
    width: 144px;
    height: 2px;
    background-color: rgb(192, 192, 192);
}

.container p {
    font-size: 14px;
    margin: 0 .5rem;
    color: rgb(167, 167, 167);
}

form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    row-gap: 1rem;
}

form input {
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    border: 1px solid rgb(167, 167, 167);
    outline: none;
}

form .container {
    justify-content: space-between;
}

form .container .ckbox {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}

form .container .ckbox span {
    font-size: 15px;
}

form a {
    font-size: 15px;
    color: #296eb3;
}

form button {
    margin-top: 2rem;
    padding: 0.8rem 1.2rem;
    background-color: #3CD6A3;
    border: none;
    outline: none;
    border-radius: 5px;
    color: white;
}

.right {
    height: auto;
    width: 100vh;
    background-image: url(../img/contact.png);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right h1 {
    color: white;
    font-weight: bold;
    text-align: center;
}