*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root{
    --azul: #5ebbd6;
    --rosa: #f6b0ce;
}



h1{
    text-align: center;
    color: white;
    padding: 5px;
    margin-bottom: 5px;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    display: flex;
    border-radius: 10px;
    align-items: center;
    
    flex-direction: column;
    gap: 10px;
    
}

.formulario {
    display: flex;
    flex-direction: column;
    background-color: var(--rosa);
    padding: 15px;
    border-radius: 10px;
    
}

.preenchimento {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

button {
    background-color: var(--azul);
    color:white;
    border-radius: 10px;
    padding: 10px;
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: var(--rosa);
    color: white;
    border: 2px solid var(--azul);
}
input {
    background-color: transparent;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid white;
    margin-bottom: 10px;
    color: white;
}
input::placeholder {
    color: white;
    opacity: 0.9;
}

input:focus {
    outline: none;
    border: 2px solid var(--azul);
}