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

        body {
            background-color: #E5E7EB;
            color: #000;
        }

        /* HEADER */
        header {
            background-color: #fff;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-area{
        display:flex;
        align-items:center;
        gap:10px;
        font-size:16px;
        font-weight:bold;
      
        }

        .logo-square{
        width:10px;
        height:10px;
        background:#8d8e94;
        border-radius: 50%;
        }

        .cargo{
        font-size:12px;
        font-weight:400;
        color:#444;
        }
       
        nav a {
           margin-left: 35px;
            text-decoration: none;
            font-size: 12px;
            color: black;
            font-size: 12px;
        }

        nav a.active {
            color: #1958fa;
            font-weight: bold;
        }

        /* CONTAINER */
        main {
            min-height: calc(100vh - 80px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
        }

        .title span {
            width: 12px;
            height: 12px;
            background-color: #1A4CFF;
            display: inline-block;
           
        }

        /* FORM */
        .form-container {
            background-color: #fff;
            width: 100%;
            max-width: 520px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 4px;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .row {
            display: flex;
            gap: 30px;
        }

        .field {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        label {
            font-size: 12px;
            font-weight: bold;
        }

        label span {
            color: #1A4CFF;
        }

        input, textarea {
            border: none;
            border-bottom: 1px solid #000;
            padding: 8px 0;
            font-size: 14px;
            outline: none;
            background: transparent;
        }

        textarea {
            resize: none;
            height: 80px;
        }

        button {
            width: fit-content;
            background-color: #1A4CFF;
            color: #fff;
            border: none;
            padding: 10px 30px;
            border-radius: 20px;
            font-size: 12px;
            cursor: pointer;
        }

        button:hover {
            opacity: 0.9;
        }

        /* RESPONSIVO */
        @media (max-width: 768px) {
            header {
                padding: 20px;
                flex-direction: column;
                gap: 15px;
            }

            nav a {
                margin-left: 15px;
                font-size: 13px;
            }

            .row {
                flex-direction: column;
            }

            .form-container {
                padding: 30px 20px;
            }
        }