@import url('https://fonts.googleapis.com/css2?family=Boogaloo&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.metade {
    width: 100vw;
    height: 100vh;
    display: grid;
    background-color: #f0f0f0;
    grid-template-columns: 1.5fr 1fr;
}

.left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    position: relative;
}

.left img {
    border-radius: 1rem;
    height: 90vh;
    max-width: 100%;
    filter: grayscale(100%);
    box-shadow: 2px 2px 5px gray;
}

.left h1 {
    font-size: 2.5rem;
    font-family: boogaloo, Cochin, Georgia, Times, 'Times New Roman', serif;
    letter-spacing: 2px;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    position: absolute;
    background-color: black;
    padding: 1rem;
    border-radius: 1rem;
}

.left h1 span {
    color: #ff1414;
    font-size: 3.5rem;
    font-weight: bold;
        font-family: boogaloo, Cochin, Georgia, Times, 'Times New Roman', serif;

}

.right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    background-color: #ffffff;
}

.right h1 {
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
    margin-bottom: 1rem;
}

.right form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}
.right form input {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #cccccc;
    border-radius: 0.5rem;
    font-size: 1rem;
}
.right form button {
    padding: 0.75rem;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}   
.right form button:hover {
    background-color: #0056b3;
}