/* Reaproveita o mesmo estilo base */
* {
  margin: 0;
 padding: 0;
 font-family: "Roboto", sans-serif;
 box-sizing: border-box;
}

body {
 background: #f0f0f0;
 min-height: 100vh;
 margin: 0;
 padding: 0;
}

.social-wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
}

.left_panel {
    position: relative;
    background-color: #2d9596;
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    color: white;
    overflow: hidden;
}

.left_panel .bg_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/image/fundo_barra_lateral.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.left_panel h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.left_panel p {
    font-size: 18px;
}

.left_panel_text {
  align-self: anchor-center;
}

.social-right {
    width: 65%;
    padding: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.social-right h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #111827;
}

.social-right p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 24px;
}

form button {
    padding: 14px;
    background-color: #50a8ae;
    color: #ffffff;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

form button:hover {
    background-color: #38a3a8;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f3f4f6;
    color: #111827;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #bebec0;
}
