body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            margin: 0;
            background-color: #f0f2f5;
        }

        /* Header */
        .header {
            background-color: #007cc0;
            color: white;
            padding: 10px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-left {
            display: flex;
            align-items: center;
        }

        .header-logo {
            height: 50px; /* Ajuste conforme a imagem real */
        }

        .header-title {
            margin-left: 20px;
            font-size: 24px;
            font-weight: 300;
        }

        /* Conteúdo principal */
        .main-content {
            padding: 40px 40px;
            max-width: 1200px;
            margin: auto;
        }

        h1 {
            color: #007cc0;
            font-weight: 500;
            border-bottom: 2px solid #ddd;
            padding-bottom: 5px;
            margin-bottom: 20px;
        }

        p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Container das três colunas */
        .cards-container {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 30px;
            flex: 1;
            min-width: 250px;
            text-align: center;
        }

        .form-card h2 {
            font-size: 22px;
            color: #333;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 15px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #555;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 16px;
        }

        .btn {
            width: 100%;
            padding: 12px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #0056b3;
        }

        .btnWarning {
            width: 100%;
            padding: 12px;
            background-color: rgb(151, 151, 60);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 20px;
        }

        .btnWarning:hover {
            background-color: rgb(153, 134, 97);
        }

        .forgot-password {
            display: block;
            text-align: center;
            margin-top: 15px;
            color: #007bff;
            text-decoration: none;
            font-size: 14px;
        }

        /* Cartões de ilustração */
        .illustration-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding: 0;
            padding-top: 20px;
        }

        .illustration-card img {
            max-width: 100%;
            height: auto;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }

        .illustration-btn {
            width: calc(100% - 20px);
            margin: 15px 10px;
            padding: 12px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .illustration-btn:hover {
            background-color: #0056b3;
        }

        /* Link do Termo de Adesão */
        .term-link {
            display: flex;
            align-items: center;
            margin-top: 30px;
            color: #007bff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
        }

        .term-link:hover {
            text-decoration: underline;
        }

        .term-link-icon {
            font-size: 20px;
            margin-right: 8px;
        }

        .term-button {
            /* Estilo da borda e canto arredondado */
            border: 1px solid #007bff;
            border-radius: 999px; /* Valor alto para criar o formato de pílula */
            padding: 10px 20px;

            /* Estilo do texto e link */
            color: #007bff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            white-space: nowrap;

            /* Alinhamento do ícone e texto */
            display: inline-flex;
            align-items: center;
            gap: 10px; /* Espaço entre o ícone e o texto */
        }

        .term-button:hover {
            background-color: #f0f8ff; /* Efeito de hover suave */
        }

        /* Estilo do ícone */
        .term-button-icon {
            font-size: 18px;
            line-height: 1; /* Para alinhar o ícone verticalmente */
        }

        .error {
            color: red;
        }

        /* Responsividade básica */
        @media (max-width: 768px) {
            .cards-container {
                flex-direction: column;
                align-items: center;
            }
            .card {
                width: 100%;
                max-width: 400px;
            }
        }