
/* Estilos para o formulário de associação SEMESP - */
body {
    background: linear-gradient(180deg, #9b0a0a, #d53e3e);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-form {
    max-width: 900px;
    display: flex;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    border-radius: 15px;
    overflow: hidden;
}
.card-left {
    background-color: #d92727;
    color: #fff;
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-left h2 {
    font-weight: bold;
    margin-bottom: 20px;
}
.card-left p {
    font-size: 1rem;
}
.card-right {
    background: #fff;
    flex: 1;
    padding: 40px;
}
.btn-custom {
    background-color: #d92727;
    border: none;
}
.btn-custom:hover {
    background-color: #a71c1c;
}

